aboutsummaryrefslogtreecommitdiff
path: root/testes/utf8.lua (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-05-16Some cleaning in the new table APIRoberto Ierusalimschy8-210/+189
2023-05-16New table API for 'set' functionsRoberto Ierusalimschy5-71/+180
2023-05-15Towards a new implementation of arraysRoberto Ierusalimschy5-59/+108
The array part of a table wastes too much space, due to padding. To avoid that, we need to store values in the array as something different from a TValue. Therefore, the API for table access should not assume that any value in a table lives in a *TValue. This commit is the first step to remove that assumption: functions luaH_get*, instead of returning a *TValue where the value lives, receive a *TValue where to put the value being accessed. (We still have to change the luaH_set* functions.)
2023-05-15Option '-l' discards version sufix from file nameRoberto Ierusalimschy4-11/+26
Like 'require', the command-line option '-l' discards an optional version suffix (everything after an hyphen) from a file name when creating the module name.
2023-05-15Small improvements in testsRoberto Ierusalimschy2-21/+24
2023-05-15DetailsRoberto Ierusalimschy5-14/+14
- Better comments about short strings in opcodes. - luaH_newkey made static.
2023-05-02"Emergency" new version 5.4.6v5.4.6Roberto Ierusalimschy5-22/+41
'lua_resetthread' is back to its original signature, to avoid incompatibilities in the ABI between releases of the same version. New function 'lua_closethread' added with the "correct" signature.
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-23Clock component removed from 'luaL_makeseed'Roberto Ierusalimschy4-11/+9
'clock' can be quite slow on some machines.
2023-03-20New function 'luaL_makeseed'Roberto Ierusalimschy9-86/+87
This function unifies code from 'lua_newstate', 'math.randomseed', and 'table.sort' that tries to create a value with a minimum level of randomness.
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-29Do not avoid major collections when GCdebt is zeroRoberto Ierusalimschy1-5/+2
'collectgarbage("step")' (without an argument) does not have any special meaning, it means "do a step with some default size".
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-22Changes in opcodes for generic 'for'Roberto Ierusalimschy3-29/+38
Again, as the control variable is read only, the code doesn't need to keep an internal copy of it.
2022-12-21Simplification in opcodes for numerical 'for'Roberto Ierusalimschy2-27/+27
As the control variable is read only, the code doesn't need to keep an internal copy of it.
2022-12-21Control variables in for loops are read onlyRoberto Ierusalimschy5-37/+40
2022-12-20Towards Lua 5.5Roberto Ierusalimschy5-129/+12
2022-12-20Dump doesn't need to reuse 'source'Roberto Ierusalimschy3-12/+35
All strings are being reused now, including 'source'.
2022-12-15Dump/undump reuse stringsRoberto Ierusalimschy5-12/+77
A repeated string in a dump is represented as an index to its first occurence, instead of another copy of the string.
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-13Changed signal of GC debtRoberto Ierusalimschy6-25/+22
Positive debts seems more natural then negative ones.
2022-12-13Revamp of GC parametersRoberto Ierusalimschy6-41/+61
More uniformity when handling GC parameters + avoid divisions by 100 when applying them.
2022-12-09Reduce calls to 'luaC_step' when GC is stoppedRoberto Ierusalimschy1-3/+6
2022-12-07New function 'luaL_openselectedlibs'Roberto Ierusalimschy7-69/+71
Makes it easier to start Lua with only some standard libraries.
2022-12-06Simplification in handling of GC debtRoberto Ierusalimschy2-20/+22
Each incremental step has always the same size (stepsize), and the debt for next step also is always the same.
2022-12-02DetailsRoberto Ierusalimschy1-5/+5
Parentheses and comments.
2022-11-29Simpler control for major collectionsRoberto Ierusalimschy6-136/+77
2022-11-24Removed GC checks from function callsRoberto Ierusalimschy5-20/+10
Function calls do not create new objects. (It may use memory with stack reallocation, but now that is irrelevant to the GC.)
2022-11-23'l_mem' renamed to 'l_obj' to count objectsRoberto Ierusalimschy6-49/+51
2022-11-23First version of GC counting objects for controlRoberto Ierusalimschy9-156/+162
Still needs to review generational mode.
2022-11-23Stop GC while building initial stateRoberto Ierusalimschy1-1/+3
2022-11-08Removed unused field 'UpVal.tbc'Roberto Ierusalimschy2-4/+2
2022-11-03Added a counter of the total number of existing objectsRoberto Ierusalimschy3-0/+5
It may simplify the control of the garbage collector.
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-11-01Tables have a 'lastfree' information only when neededRoberto Ierusalimschy7-24/+84
Only tables with some minimum number of entries in their hash part have a 'lastfree' field, kept in a header before the node vector.
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.