aboutsummaryrefslogtreecommitdiff
path: root/lvm.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-04-18Detailsv5.4.5Roberto Ierusalimschy7-14/+14
Typos in comments and details in the manual.
2023-03-31New year (2023)Roberto Ierusalimschy3-5/+4
Also, small tweak in makefile. (-Wsign-compare is already enabled by -Wextra.)
2023-03-27More orderliness in casts of enumerationsRoberto Ierusalimschy2-27/+57
2023-03-24More regularity in uses of enums in 'lcode.c'Roberto Ierusalimschy1-18/+18
2023-03-17Bug: Loading a corrupted binary file can segfaultRoberto Ierusalimschy3-2/+22
The size of the list of upvalue names are stored separated from the size of the list of upvalues, but they share the same array.
2023-03-09DetailsRoberto Ierusalimschy1-3/+17
Comments in 'onelua.c'
2023-03-09Corrected support for 16-bit systemsRoberto Ierusalimschy3-10/+8
We still need access to a 16-bit system to correctly test these changes.
2023-02-08Bug: Wrong line in error message for arith. errorsRoberto Ierusalimschy2-0/+12
It also causes 'L->top' to be wrong when the error happens, triggering an 'assert'.
2023-02-07Simpler definition for LUA_STRFTIMEOPTIONSRoberto Ierusalimschy1-15/+6
There is no need for those intermediate definitions.
2023-02-02New macro LUA_USE_IOSRoberto Ierusalimschy2-12/+11
Do not try to detect automatically whether system is iOS; it is simpler and more reliable to let the programmer inform that.
2023-02-02Small changes in hash of pointersRoberto Ierusalimschy1-4/+17
When converting from pointer to integer, use 'uintptr_t' if available; otherwise try 'uintmax_t', and use 'size_t' as last resource.
2023-01-24Fix absence of 'system' in iOSRoberto Ierusalimschy1-1/+17
Despite claiming to be ISO, the C library in some Apple platforms does not implement 'system'.
2022-12-28Avoid excessive name pollution in test filesRoberto Ierusalimschy26-261/+335
Test files are more polite regarding the use of globals when locals would do, and when globals are necessary deleting them after use.
2022-12-23Detail in make file for testes/libsRoberto Ierusalimschy1-5/+5
Everything depends on the Lua version (as given by 'lua.h')
2022-12-15Small change in barrier macrosRoberto Ierusalimschy1-8/+9
Reuse macros for objects when defining the macros for values.
2022-12-15Small improvements in 'lmem.c'Roberto Ierusalimschy1-27/+41
Added some auxiliary macros + fixed a bug in compilation option EMERGENCYGCTESTS. (It should not try to force an emergency collection when it cannot run one.)
2022-12-14Details in some header filesRoberto Ierusalimschy3-11/+21
Identifier LUA_NUMTAGS was deprecated (changed to LUA_NUMTYPES) + better handling of some inclusion loops.
2022-12-09Reduce calls to 'luaC_step' when GC is stoppedRoberto Ierusalimschy1-3/+6
2022-12-02DetailsRoberto Ierusalimschy1-5/+5
Parentheses and comments.
2022-11-23Stop GC while building initial stateRoberto Ierusalimschy1-1/+3
2022-11-08Removed unused field 'UpVal.tbc'Roberto Ierusalimschy2-4/+2
2022-11-01Threads are created like other objectsRoberto Ierusalimschy3-12/+16
Using a version of 'luaC_newobj' that allows offsets (extra space before the object itself).
2022-10-31Stack reallocation done with a single reallocRoberto Ierusalimschy2-22/+52
To avoid the need of both the old and the new stack addresses valid at the same time, to correct the pointers to the stack, these pointers are changed to offsets before the reallocation and then changed back to pointers after the reallocation.
2022-10-29Stack indices changed to union'sRoberto Ierusalimschy19-370/+384
That will allow to change pointers to offsets while reallocating the stack.
2022-10-26DetailsRoberto Ierusalimschy1-2/+7
Added comments in the makefile about other useful '-fsanitize' options.
2022-10-25Bug: stack overflow with nesting of coroutine.closeRoberto Ierusalimschy6-6/+38
2022-10-21Removed test function 'luaH_isdummy'Roberto Ierusalimschy2-3/+0
It was not being used anywhere.
2022-10-19Option '-l g=mod' added to the manualRoberto Ierusalimschy1-11/+12
Plus some other improvements in the manual.
2022-10-19DetailsRoberto Ierusalimschy2-7/+7
Some cast operations rewritten to use respective macros.
2022-10-19Portability issue in a test for 'string.format'Roberto Ierusalimschy1-2/+7
2022-09-23Negation in constant folding of '>>' may overflowRoberto Ierusalimschy4-4/+19
2022-09-23Small simplification in overflow check in 'getfield'Roberto Ierusalimschy2-3/+10
Subtracting a small non-negative int from a non-negative int cannot overflow, and adding a non-negative int to INT_MIN cannot overflow.
2022-09-23Bug: 'utf8.codes' accepts spurious continuation bytesRoberto Ierusalimschy2-12/+27
2022-09-16New test for table rehashRoberto Ierusalimschy1-9/+29
2022-09-08Note in the manual about using '...' as an expressionRoberto Ierusalimschy1-5/+16
2022-09-07Corrected error message in 'table.remove'Roberto Ierusalimschy1-1/+1
2022-09-06Changed the growth rate of string buffersRoberto Ierusalimschy2-6/+7
The growth rate of string buffers was reduced from 2 to 1.5 (3/2). As string buffers start larger (256~1024 bytes), they don't need to grow that fast. Moreover, a lower rate allows multiplicative growth up to larger sizes (3/2 of the maximum). (After that, the growth becomes linear, which is mostly useless.)
2022-08-24Bug: 'break' may not properly close variable in a 'for' loopRoberto Ierusalimschy2-8/+28
Function 'leaveblock' was generating "break" label before removing variables from the closing block. If 'createlabel' created a 'close' instruction (which it did when matching a goto/break that exited the scope of an upvalue), that instruction would use the wrong level.
2022-08-23Simpler handling of Byte Order Mark (BOM)Roberto Ierusalimschy2-26/+56
2022-08-23Bug: set correct pause when (re)entering gen. collection.Roberto Ierusalimschy1-32/+31
2022-08-19Better documentation for 'multires' expressionsRoberto Ierusalimschy3-75/+120
Manual has a new section explaining multires expressions, lists of expressions, and adjustments. This commit also corrects some comments in the code.
2022-05-26More checks and documentation for uses of EXTRA_STACKRoberto Ierusalimschy5-13/+47
2022-05-25Bug: 'lua_settop' may use an invalid pointer to stackRoberto Ierusalimschy5-12/+34
2022-05-23'luaV_concat' can use invalidated pointer to stackRoberto Ierusalimschy1-3/+3
Bug introduced in commit 42d40581.
2022-05-23'lua_checkstack' doesn't need to check stack overflowRoberto Ierusalimschy5-26/+17
'luaD_growstack' already checks that. This commit also fixes an internal bug in 'luaD_growstack': a large 'n' could cause an arithmetic overflow when computing 'needed'.
2022-05-20Save stack space while handling errorsRoberto Ierusalimschy2-3/+8
Because error handling (luaG_errormsg) uses slots from EXTRA_STACK, and some errors can recur (e.g., string overflow while creating an error message in 'luaG_runerror', or a C-stack overflow before calling the message handler), the code should use stack slots with parsimony. This commit fixes the bug "Lua-stack overflow when C stack overflows while handling an error".
2022-05-10Details (identation and typos)Roberto Ierusalimschy2-3/+4
2022-05-06Factoring out common parts of 'codearith' and 'codebitwise'Roberto Ierusalimschy1-25/+33
2022-04-25Bug: Wrong code generation in bitwise operationsRoberto Ierusalimschy3-6/+42
2022-04-07New release number (5.4.5)Roberto Ierusalimschy1-2/+2