Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | More orderliness in casts of enumerations | Roberto Ierusalimschy | 2023-03-27 | 2 | -27/+57 | |
| | | ||||||
| * | More regularity in uses of enums in 'lcode.c' | Roberto Ierusalimschy | 2023-03-24 | 1 | -18/+18 | |
| | | ||||||
| * | Bug: Loading a corrupted binary file can segfault | Roberto Ierusalimschy | 2023-03-17 | 3 | -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. | |||||
| * | Details | Roberto Ierusalimschy | 2023-03-09 | 1 | -3/+17 | |
| | | | | | | | | Comments in 'onelua.c' | |||||
| * | Corrected support for 16-bit systems | Roberto Ierusalimschy | 2023-03-09 | 3 | -10/+8 | |
| | | | | | | | | | | We still need access to a 16-bit system to correctly test these changes. | |||||
| * | Bug: Wrong line in error message for arith. errors | Roberto Ierusalimschy | 2023-02-08 | 2 | -0/+12 | |
| | | | | | | | | | | It also causes 'L->top' to be wrong when the error happens, triggering an 'assert'. | |||||
| * | Simpler definition for LUA_STRFTIMEOPTIONS | Roberto Ierusalimschy | 2023-02-07 | 1 | -15/+6 | |
| | | | | | | | | There is no need for those intermediate definitions. | |||||
* | | Clock component removed from 'luaL_makeseed' | Roberto Ierusalimschy | 2023-03-23 | 4 | -11/+9 | |
| | | | | | | | | 'clock' can be quite slow on some machines. | |||||
* | | New function 'luaL_makeseed' | Roberto Ierusalimschy | 2023-03-20 | 9 | -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. | |||||
* | | Merge branch 'master' into nextversion | Roberto Ierusalimschy | 2023-02-02 | 3 | -5/+33 | |
|\| | ||||||
| * | New macro LUA_USE_IOS | Roberto Ierusalimschy | 2023-02-02 | 2 | -12/+11 | |
| | | | | | | | | | | Do not try to detect automatically whether system is iOS; it is simpler and more reliable to let the programmer inform that. | |||||
| * | Small changes in hash of pointers | Roberto Ierusalimschy | 2023-02-02 | 1 | -4/+17 | |
| | | | | | | | | | | When converting from pointer to integer, use 'uintptr_t' if available; otherwise try 'uintmax_t', and use 'size_t' as last resource. | |||||
| * | Fix absence of 'system' in iOS | Roberto Ierusalimschy | 2023-01-24 | 1 | -1/+17 | |
| | | | | | | | | | | Despite claiming to be ISO, the C library in some Apple platforms does not implement 'system'. | |||||
* | | Do not avoid major collections when GCdebt is zero | Roberto Ierusalimschy | 2022-12-29 | 1 | -5/+2 | |
| | | | | | | | | | | 'collectgarbage("step")' (without an argument) does not have any special meaning, it means "do a step with some default size". | |||||
* | | Merge branch 'master' into nextversion | Roberto Ierusalimschy | 2022-12-28 | 26 | -261/+335 | |
|\| | ||||||
| * | Avoid excessive name pollution in test files | Roberto Ierusalimschy | 2022-12-28 | 26 | -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. | |||||
* | | Merge branch 'master' into nextversion | Roberto Ierusalimschy | 2022-12-23 | 1 | -5/+5 | |
|\| | ||||||
| * | Detail in make file for testes/libs | Roberto Ierusalimschy | 2022-12-23 | 1 | -5/+5 | |
| | | | | | | | | Everything depends on the Lua version (as given by 'lua.h') | |||||
* | | Changes in opcodes for generic 'for' | Roberto Ierusalimschy | 2022-12-22 | 3 | -29/+38 | |
| | | | | | | | | | | Again, as the control variable is read only, the code doesn't need to keep an internal copy of it. | |||||
* | | Simplification in opcodes for numerical 'for' | Roberto Ierusalimschy | 2022-12-21 | 2 | -27/+27 | |
| | | | | | | | | | | As the control variable is read only, the code doesn't need to keep an internal copy of it. | |||||
* | | Control variables in for loops are read only | Roberto Ierusalimschy | 2022-12-21 | 5 | -37/+40 | |
| | | ||||||
* | | Towards Lua 5.5 | Roberto Ierusalimschy | 2022-12-20 | 5 | -129/+12 | |
| | | ||||||
* | | Dump doesn't need to reuse 'source' | Roberto Ierusalimschy | 2022-12-20 | 3 | -12/+35 | |
| | | | | | | | | All strings are being reused now, including 'source'. | |||||
* | | Dump/undump reuse strings | Roberto Ierusalimschy | 2022-12-15 | 5 | -12/+77 | |
| | | | | | | | | | | A repeated string in a dump is represented as an index to its first occurence, instead of another copy of the string. | |||||
* | | Merge branch 'master' into nextversion | Roberto Ierusalimschy | 2022-12-15 | 1 | -8/+9 | |
|\| | ||||||
| * | Small change in barrier macros | Roberto Ierusalimschy | 2022-12-15 | 1 | -8/+9 | |
| | | | | | | | | Reuse macros for objects when defining the macros for values. | |||||
* | | Merge branch 'master' into nextversion | Roberto Ierusalimschy | 2022-12-15 | 1 | -27/+41 | |
|\| | ||||||
| * | Small improvements in 'lmem.c' | Roberto Ierusalimschy | 2022-12-15 | 1 | -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.) | |||||
* | | Merge branch 'master' into nextversion | Roberto Ierusalimschy | 2022-12-14 | 3 | -11/+21 | |
|\| | ||||||
| * | Details in some header files | Roberto Ierusalimschy | 2022-12-14 | 3 | -11/+21 | |
| | | | | | | | | | | Identifier LUA_NUMTAGS was deprecated (changed to LUA_NUMTYPES) + better handling of some inclusion loops. | |||||
* | | Changed signal of GC debt | Roberto Ierusalimschy | 2022-12-13 | 6 | -25/+22 | |
| | | | | | | | | Positive debts seems more natural then negative ones. | |||||
* | | Revamp of GC parameters | Roberto Ierusalimschy | 2022-12-13 | 6 | -41/+61 | |
| | | | | | | | | | | More uniformity when handling GC parameters + avoid divisions by 100 when applying them. | |||||
* | | Merge branch 'master' into nextversion | Roberto Ierusalimschy | 2022-12-12 | 2 | -7/+11 | |
|\| | ||||||
| * | Reduce calls to 'luaC_step' when GC is stopped | Roberto Ierusalimschy | 2022-12-09 | 1 | -3/+6 | |
| | | ||||||
| * | Details | Roberto Ierusalimschy | 2022-12-02 | 1 | -5/+5 | |
| | | | | | | | | Parentheses and comments. | |||||
* | | New function 'luaL_openselectedlibs' | Roberto Ierusalimschy | 2022-12-07 | 7 | -69/+71 | |
| | | | | | | | | Makes it easier to start Lua with only some standard libraries. | |||||
* | | Simplification in handling of GC debt | Roberto Ierusalimschy | 2022-12-06 | 2 | -20/+22 | |
| | | | | | | | | | | Each incremental step has always the same size (stepsize), and the debt for next step also is always the same. | |||||
* | | Merge branch 'master' into nextversion | Roberto Ierusalimschy | 2022-12-01 | 2 | -4/+2 | |
|\| | ||||||
| * | Stop GC while building initial state | Roberto Ierusalimschy | 2022-11-23 | 1 | -1/+3 | |
| | | ||||||
| * | Removed unused field 'UpVal.tbc' | Roberto Ierusalimschy | 2022-11-08 | 2 | -4/+2 | |
| | | ||||||
* | | Simpler control for major collections | Roberto Ierusalimschy | 2022-11-29 | 6 | -136/+77 | |
| | | ||||||
* | | Removed GC checks from function calls | Roberto Ierusalimschy | 2022-11-24 | 5 | -20/+10 | |
| | | | | | | | | | | Function calls do not create new objects. (It may use memory with stack reallocation, but now that is irrelevant to the GC.) | |||||
* | | 'l_mem' renamed to 'l_obj' to count objects | Roberto Ierusalimschy | 2022-11-23 | 6 | -49/+51 | |
| | | ||||||
* | | First version of GC counting objects for control | Roberto Ierusalimschy | 2022-11-23 | 9 | -156/+162 | |
| | | | | | | | | Still needs to review generational mode. | |||||
* | | Added a counter of the total number of existing objects | Roberto Ierusalimschy | 2022-11-03 | 3 | -0/+5 | |
| | | | | | | | | It may simplify the control of the garbage collector. | |||||
* | | Merge branch 'master' into nextversion | Roberto Ierusalimschy | 2022-11-01 | 3 | -12/+16 | |
|\| | ||||||
| * | Threads are created like other objects | Roberto Ierusalimschy | 2022-11-01 | 3 | -12/+16 | |
| | | | | | | | | | | Using a version of 'luaC_newobj' that allows offsets (extra space before the object itself). | |||||
* | | Tables have a 'lastfree' information only when needed | Roberto Ierusalimschy | 2022-11-01 | 7 | -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. | |||||
* | Stack reallocation done with a single realloc | Roberto Ierusalimschy | 2022-10-31 | 2 | -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. | |||||
* | Stack indices changed to union's | Roberto Ierusalimschy | 2022-10-29 | 19 | -370/+384 | |
| | | | | | That will allow to change pointers to offsets while reallocating the stack. |