| Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
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.)
|
|
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.
|
|
|
|
- Better comments about short strings in opcodes.
- luaH_newkey made static.
|
|
'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.
|
|
Typos in comments and details in the manual.
|
|
Also, small tweak in makefile. (-Wsign-compare is already enabled by
-Wextra.)
|
|
|
|
|
|
'clock' can be quite slow on some machines.
|
|
This function unifies code from 'lua_newstate', 'math.randomseed',
and 'table.sort' that tries to create a value with a minimum level
of randomness.
|
|
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.
|
|
Comments in 'onelua.c'
|
|
We still need access to a 16-bit system to correctly test
these changes.
|
|
It also causes 'L->top' to be wrong when the error happens,
triggering an 'assert'.
|
|
There is no need for those intermediate definitions.
|
|
Do not try to detect automatically whether system is iOS; it is
simpler and more reliable to let the programmer inform that.
|
|
When converting from pointer to integer, use 'uintptr_t' if available;
otherwise try 'uintmax_t', and use 'size_t' as last resource.
|
|
Despite claiming to be ISO, the C library in some Apple platforms
does not implement 'system'.
|
|
'collectgarbage("step")' (without an argument) does not have any
special meaning, it means "do a step with some default size".
|
|
Test files are more polite regarding the use of globals when locals
would do, and when globals are necessary deleting them after use.
|
|
Everything depends on the Lua version (as given by 'lua.h')
|
|
Again, as the control variable is read only, the code doesn't need
to keep an internal copy of it.
|
|
As the control variable is read only, the code doesn't need to keep
an internal copy of it.
|
|
|
|
|
|
All strings are being reused now, including 'source'.
|
|
A repeated string in a dump is represented as an index to its first
occurence, instead of another copy of the string.
|
|
Reuse macros for objects when defining the macros for values.
|
|
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.)
|
|
Identifier LUA_NUMTAGS was deprecated (changed to LUA_NUMTYPES) +
better handling of some inclusion loops.
|
|
Positive debts seems more natural then negative ones.
|
|
More uniformity when handling GC parameters + avoid divisions by 100
when applying them.
|
|
|
|
Makes it easier to start Lua with only some standard libraries.
|
|
Each incremental step has always the same size (stepsize), and the
debt for next step also is always the same.
|
|
Parentheses and comments.
|
|
|
|
Function calls do not create new objects. (It may use memory with
stack reallocation, but now that is irrelevant to the GC.)
|
|
|
|
Still needs to review generational mode.
|
|
|
|
|
|
It may simplify the control of the garbage collector.
|
|
Using a version of 'luaC_newobj' that allows offsets (extra space
before the object itself).
|
|
Only tables with some minimum number of entries in their hash part
have a 'lastfree' field, kept in a header before the node vector.
|
|
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.
|
|
That will allow to change pointers to offsets while reallocating
the stack.
|