aboutsummaryrefslogtreecommitdiff
path: root/testes/sort.lua (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-01-29DetailsRoberto Ierusalimschy7-24/+25
2024-01-25Small optimization in 'luaH_psetint'Roberto Ierusalimschy2-4/+5
It is quite common to write to empty but existing cells in the array part of a table, so 'luaH_psetint' checks for the common case that the table doesn't have a newindex metamethod to complete the write.
2024-01-18New function 'table.create'Roberto Ierusalimschy3-2/+45
Creates a table preallocating memory. (It just exports to Lua the API function 'lua_createtable'.)
2024-01-16New mechanism to query GC parametersRoberto Ierusalimschy6-27/+35
2024-01-15Clear interface between references and predefinesRoberto Ierusalimschy7-43/+92
The reference system has a defined way to add initial values to the table where it operates.
2024-01-13Removed uses of LUA_NUMTAGSRoberto Ierusalimschy4-6/+4
That constant was already deprecated (see commit 6aabf4b15e7).
2024-01-12Optimizations for 'lua_rawgeti' and 'lua_rawseti'Roberto Ierusalimschy4-49/+80
'lua_rawgeti' now uses "fast track"; 'lua_rawseti' still calls 'luaH_setint', but the latter was recoded to avoid extra overhead when writing to the array part after 'alimit'.
2024-01-11Bug: Yielding in a hook stops in the wrong instructionRoberto Ierusalimschy3-6/+11
Yielding in a hook must decrease the program counter, because it already counted an instruction that, in the end, was not executed. However, that decrement should be done only when about to restart the thread. Otherwise, inspecting the thread with the debug library shows it one instruction behind of where it really is.
2024-01-10A few more tweaks in the garbage collectorRoberto Ierusalimschy5-14/+33
2023-12-27Fixed buffers reuse absolute line informationRoberto Ierusalimschy4-13/+36
2023-12-27Several tweaks in the garbage collectorRoberto Ierusalimschy8-56/+98
- back with step size in collectgarbage("step") - adjustments in defaults for some GC parameters - adjustments in 'luaO_codeparam'
2023-12-22Removed compatibility option LUA_COMPAT_GCPARAMSRoberto Ierusalimschy6-53/+20
The meaning of different GC parameters changed, so there is point in supporting old values for them. The new code simply ignores the parameters when changing the GC mode, so the incompatibility is small.
2023-12-22New option "setparms" for 'collectgarbage'Roberto Ierusalimschy13-78/+163
The generational mode also uses the parameters for the incremental mode in its major collections, so it should be easy to change those parameters without having to change the GC mode.
2023-12-21Bug: Buffer overflow in string concatenationRoberto Ierusalimschy2-2/+2
Even if the string fits in size_t, the whole size of the TString object can overflow when we add the header.
2023-12-20GC parameters encoded as floating-point bytesRoberto Ierusalimschy8-57/+113
This encoding brings more precision and a larger range for these parameters.
2023-12-20Option 0 for step multiplier makes GC non-incrementalRoberto Ierusalimschy6-50/+84
2023-12-14Cleaner protocol between 'lua_dump' and writer functionRoberto Ierusalimschy6-46/+66
'lua_dump' signals to the writer function the end of a dump, so that is has more freedom when using the stack.
2023-12-07Check minor->major made at the end of a minor cycleRoberto Ierusalimschy1-60/+35
It does not make sense to wait for another cycle to decide when much of the information about creation of old objects is already available.
2023-12-07First criteria for shifts minor<->majorRoberto Ierusalimschy8-128/+187
2023-12-06Major collections done incrementallyRoberto Ierusalimschy4-75/+80
Major collections do not need to "stop the world". Still pending: criteria for shifts minor-major, shifts generational-incremental.
2023-12-01Removed macro 'changeage'Roberto Ierusalimschy2-14/+12
It is simpler to use always 'setage'. The saving from 'changeage' is too irrelevant.
2023-12-01Removed parameter in 'collectgarbage("step")'Roberto Ierusalimschy2-57/+3
A call to 'collectgarbage("step")' always performs one GC basic step.
2023-11-30Removed deprecated options in 'lua_gc'Roberto Ierusalimschy4-39/+10
Options 'setpause' and 'setstepmul' were deprecated in Lua 5.4.
2023-11-29Comments detailing the ages for generational GCRoberto Ierusalimschy5-16/+59
Plus other comments and small details.
2023-11-24Panic functions should not raise errorsRoberto Ierusalimschy3-4/+14
The standard panic function was using 'lua_tostring', which may raise a memory-allocation error if error value is a number.
2023-11-24Details in the manualRoberto Ierusalimschy1-21/+13
2023-11-24Simpler coding for new representation for arraysRoberto Ierusalimschy3-50/+36
With the tags comming first in a cell, we can define the whole cell as a C type and let C do part of the address computations.
2023-11-15Buffer in 'luai_makeseed' measured in bytesRoberto Ierusalimschy2-12/+20
In the (rare) cases when sizeof(void*) or sizeof(time_t) are not multiples of sizeof(int), we still can use all their bytes in the seed.
2023-11-13Default paths stored as external stringsRoberto Ierusalimschy1-2/+3
2023-11-13Auxiliary buffer uses external stringsRoberto Ierusalimschy3-27/+40
The buffer system from the auxiliary library reuses its buffer as external memory when closing long strings.
2023-11-13Correct anchoring and GC barriers in 'loadString'Roberto Ierusalimschy2-42/+37
Call to 'luaH_setint' could call the GC with the string unanchored. Moreover, previously saved strings were being assigned to the prototype without a barrier.
2023-11-10Fixed buffers save long strings as external.Roberto Ierusalimschy4-16/+29
2023-11-09External stringsRoberto Ierusalimschy9-14/+195
Strings can use external buffers to store their contents.
2023-11-08Towards external stringsRoberto Ierusalimschy4-22/+36
Long strings have a pointer to string contents.
2023-11-08DetailsRoberto Ierusalimschy1-9/+18
Comments and parameter name in header file.
2023-11-08Solving merge issue with use of tables in dump/undumpRoberto Ierusalimschy2-6/+7
The use of tables in dump/undump to reuse strings did not exist in the version that changed the representation of arrays, so it was not corrected for the new API for tables.
2023-11-03Full implementation of new representation for arraysRoberto Ierusalimschy5-29/+96
2023-11-01Bug: Recursion in 'getobjname' can stack overflowRoberto Ierusalimschy2-69/+87
'getobjname' now broken in two, a basic version that handles locals, upvalues, and constants, and a full version, which uses the basic version to handle table accesses (globals and fields).
2023-10-30Full abstraction for representation of array valuesRoberto Ierusalimschy9-93/+128
2023-10-27Avoid direct accesses to the array part of a tableRoberto Ierusalimschy1-49/+79
2023-10-26Simpler test in 'luaH_getint'Roberto Ierusalimschy1-11/+25
The test whether key is inside the array part of a table uses a bit trick to avoid computing the real size of the array part.
2023-09-08Removed test for "corrupted binary dump"Roberto Ierusalimschy2-15/+1
Test is too non portable. (For instance, it does not work for different number types.)
2023-09-08Avoid casts from unsigned long to floating-pointRoberto Ierusalimschy1-7/+24
Old Microsoft compilers do not support those casts.
2023-09-05Added suport for Fixed BuffersRoberto Ierusalimschy12-34/+160
A fixed buffer keeps a binary chunk "forever", so that the program does not need to copy some of its parts when loading it.
2023-08-30New macro 'getlstr'Roberto Ierusalimschy5-22/+37
Accesses content and length of a 'TString'.
2023-08-30Field 'Proto.is_vararg' uses only one bitRoberto Ierusalimschy8-13/+20
So that the other bits can be used for other purposes.
2023-08-25Opcode in dumps is stored properly alignedRoberto Ierusalimschy2-1/+30
2023-08-25Cannot use 'getshrstr' before setting 'shrlen'Roberto Ierusalimschy1-1/+1
2023-08-23Documentation for "LUA_NOENV"Roberto Ierusalimschy1-0/+4
Registry field "LUA_NOENV" (that signals to libraries that option -E is on) now part of the "official" API of Lua stand-alone.
2023-08-23Bug: Wrong line number for function callsRoberto Ierusalimschy2-10/+10