aboutsummaryrefslogtreecommitdiff
path: root/testes/locals.lua (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-12-11'luaH_fastseti' uses 'checknoTM'Roberto Ierusalimschy1-1/+1
The extra check in checknoTM (versus only checking whether there is a metatable) is cheap, and it is not that uncommon for a table to have a metatable without a __newindex metafield.
2024-12-11OP_SELF restricted to constant short stringsRoberto Ierusalimschy5-34/+35
Optimize this opcode for the common case. For long names or method calls after too many constants, operation can be coded as a move followed by 'gettable'.
2024-12-05Rehash reinserts elements with "lighter" functionsRoberto Ierusalimschy1-17/+33
When reinserting elements into a table during a rehash, the code does not need to invoke all the complexity of a full 'luaH_set': - The table has space for all keys. - The key cannot exist in the new hash. - The keys are valid (not NaN nor nil). - The keys are normalized (1.0 -> 1). - The values cannot be nil. - No barrier needed (the table already pointed to the key and value).
2024-12-05Refactoring of 'luaH_newkey'Roberto Ierusalimschy2-56/+79
Function broke in two and some checks moved to the caller. (We may want to call it without the checks.)
2024-12-03Fix in the definition of 'sizeLclosure'Roberto Ierusalimschy1-1/+1
The array at the end of a Lua closure has pointers to upvalues, not to tagged values. This bug cannot cause any issue: The ISO C standard requires that all pointers to structures have the same representation, so sizeof(TValue*) must be equal to sizeof(UpVal*).
2024-12-02New function 'lua_printvalue' for internal debuggingRoberto Ierusalimschy2-4/+43
2024-11-29DetailsRoberto Ierusalimschy1-2/+2
Added two warnings to the makefile.
2024-11-29New way to keep hints for table lengthRoberto Ierusalimschy7-249/+146
Instead of using 'alimit' for keeping the size of the array and at the same time being a hint for '#t', a table now keeps these two values separate. The Table structure has a field 'asize' with the size of the array, while the length hint is kept in the array itself. That way, tables with no array part waste no space with that field. Moreover, the space for the hint may have zero cost for small arrays, if the array of tags plus the hint still fits in a single word.
2024-11-27Avoid an extra call to 'concretesize' in 'resizearray'Roberto Ierusalimschy1-5/+5
2024-11-25Change to macro 'LUAI_TRY'Roberto Ierusalimschy2-8/+7
The call to 'f' is done by the macro, to give it more flexibility.
2024-11-19Debug information about extra arguments from __callRoberto Ierusalimschy9-12/+83
'debug.getinfo' can return number of extra arguments added to a call by a chain of __call metavalues. That information is being used to improve error messages about errors in these extra arguments.
2024-11-16Counter for length of chains of __call metamethodsRoberto Ierusalimschy4-28/+68
This counter will allow (in a later commit) error messages to correct argument numbers in functions called through __call metamethods.
2024-11-15More integration of 'nresults' into 'callstatus'Roberto Ierusalimschy3-28/+33
2024-11-15'objsize' returns 'l_mem'Roberto Ierusalimschy7-25/+40
Sums of size_t may not fit in a size_t.
2024-11-15New macro 'assert_code'Roberto Ierusalimschy1-5/+6
It allows code that is only used by assertions but that are not assertions (e.g., declaration of a variable used in a later assertion).
2024-11-15Ease slightly making Lua with C89Roberto Ierusalimschy2-1/+8
2024-11-15Dummy node has a non-nil keyRoberto Ierusalimschy1-25/+28
That allows 'getfreepos' to treat it like a regular hash part that has a deleted entry.
2024-11-14Add extra size when resizing tables with deleted keysRoberto Ierusalimschy2-6/+82
Without this extra space, sequences of insertions/deletions (and some other uses) can have unpexpected low performances. See the added tests for an example, and *Mathematical Models to Analyze Lua Hybrid Tables and Why They Need a Fix* (Martínez, Nicaud, Rotondo; arXiv:2208.13602v2) for detais.
2024-11-13New rule for size of array partRoberto Ierusalimschy3-29/+81
Array part needs 1/3 of its elements filled, instead of 1/2. Array entries use ~1/3 the memory of hash entries, so this new rule still ensures that array parts do not use more memory than keeping the values in the hash, while allowing more uses of the array part, which is more efficient than the hash.
2024-10-28New structure to count keys in a table for rehashingRoberto Ierusalimschy1-50/+65
2024-10-28Table rehash can resize only the hash partRoberto Ierusalimschy2-17/+41
If there are no integer keys outside the array part, there is no reason to resize it, saving the time to count its elements. Moreover, assignments to non-integer keys will not collapse a table created with 'table.create'.
2024-10-24Always use unsigned int for indexing table-arraysRoberto Ierusalimschy2-5/+5
2024-10-23New function 'lua_numbertostrbuff'Roberto Ierusalimschy7-40/+67
It converts a Lua number to a string in a buffer, without creating a new Lua string.
2024-10-23Some changes in default GC parametersRoberto Ierusalimschy2-8/+6
2024-10-21Small bug in 'luaE_luaE_statesize'Roberto Ierusalimschy3-4/+4
Plus, function was renamed to 'luaE_threadsize'.
2024-10-21Better support in 'ltests' for tracing the GCRoberto Ierusalimschy5-30/+67
2024-10-18Some adjustments in transition minor->majorRoberto Ierusalimschy2-37/+46
Plus extra comments and other details.
2024-09-30'objsize' broke in smaller piecesRoberto Ierusalimschy9-63/+91
2024-09-27Local declaration in the REPL generates a warningRoberto Ierusalimschy2-2/+25
2024-09-20No errors in 'luaO_pushvfstring'Roberto Ierusalimschy5-24/+45
Any call to 'va_start' must have a corresponding call to 'va_end'; so, functions called between them (luaO_pushvfstring in particular) cannot raise errors.
2024-09-20Towards no errors in 'luaO_pushvfstring'Roberto Ierusalimschy1-52/+69
Any call to 'va_start' must have a corresponding call to 'va_end'; so, functions called between them (luaO_pushvfstring in particular) cannot raise errors.
2024-09-20In 'luaO_pushvfstring', all options use 'addstr2buff'Roberto Ierusalimschy1-12/+8
2024-09-20Removed 'if' left from commit ddfa1fbccfeRoberto Ierusalimschy1-1/+0
2024-09-19Avoid Microsoft warningRoberto Ierusalimschy1-1/+2
> warning C4334: '<<': result of 32-bit shift implicitly converted to > 64 bits (was 64-bit shift intended?)
2024-09-19USHRT_MAX changed to SHRT_MAXRoberto Ierusalimschy2-2/+2
USHRT_MAX does not fit in an 'int' in 16-bit systems.
2024-09-19GC back to controling pace counting bytesRoberto Ierusalimschy11-202/+247
Memory is the resource we want to save. Still to be reviewed again.
2024-09-12DetailsRoberto Ierusalimschy1-3/+3
Fixed comments in sort partition.
2024-09-10Parameter for lua_gc/LUA_GCSTEP changed to 'size_t'Roberto Ierusalimschy3-3/+3
'size_t' is the common type for measuring memory. 'int' can be too small for steps.
2024-09-06Rename of fields in global state that control GCRoberto Ierusalimschy5-32/+32
All fields in the global state that control the pace of the garbage collector prefixed with 'GC'.
2024-09-06DetailsRoberto Ierusalimschy3-20/+20
Identation + comments
2024-08-22Added option for direct correction of stack pointersRoberto Ierusalimschy1-10/+44
The use of a pointer (not access, only for computations) after its deallocation is forbiden in ISO C, but seems to work fine in all platforms we are aware of. So, using that to correct stack pointers after a stack reallocation seems safe and is much simpler than the current implementation (first change all pointers to offsets and then changing the offsets back to pointers). Anyway, for now that option is disabled.
2024-08-20'lcode.c' can use 'checklimit', tooRoberto Ierusalimschy3-12/+10
2024-08-19A return can have at most 254 valuesRoberto Ierusalimschy2-0/+13
2024-08-17Bug: wrong code gen. for indices with comparisonsRoberto Ierusalimschy2-1/+10
In function 'luaK_exp2val', used to generate code for indices: Macro 'hasjumps' does not consider the case when the whole expression is a "jump" (a test). In all other of its uses, the surrounding code ensures that the expression cannot be VJMP.
2024-08-02Floats formatted with "correct" precisionRoberto Ierusalimschy3-21/+153
Conversion float->string ensures that, for any float f, tonumber(tostring(f)) == f, but still avoiding noise like 1.1 converting to "1.1000000000000001".
2024-07-30Struct 'transferinfo' moved to "lua_State"Roberto Ierusalimschy3-24/+16
That reduces the size of "CallInfo". Moreover, bit CIST_HOOKED from call status is not needed. When in a hook, 'transferinfo' is always valid, being zero when the hook is not call/return.
2024-07-27'-Wconversion' extended to all options of Lua numbersRoberto Ierusalimschy8-39/+50
2024-07-27Added gcc option '-Wconversion'Roberto Ierusalimschy44-359/+398
No warnings for standard numerical types. Still pending alternative numerical types.
2024-07-21'nresults' moved into 'callstatus'Roberto Ierusalimschy6-62/+79
That gives us more free bits in 'callstatus', for future use.
2024-07-19Using CIST_CLSRET instead of trick with 'nresults'Roberto Ierusalimschy4-30/+31
The callstatus flag CIST_CLSRET is used in all tests for the presence of variables to be closed in C functions.