mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Mention additional optimizations
This commit is contained in:
parent
9301c9629a
commit
e4175ba958
1 changed files with 4 additions and 0 deletions
|
@ -98,6 +98,10 @@ We have added an optimization to 'table.unpack' for 2x performance improvement.
|
|||
|
||||
We've also implemented an extra optimization for tables to predict required table capacity based on fields that are assigned to it in the code after construction. This can reduce the need to reallocate tables.
|
||||
|
||||
Variadic call performance was fine-tuned and is now ~10% faster.
|
||||
|
||||
Construction of array literals was optimized for a ~7% improvement.
|
||||
|
||||
Another optimization this month changes the location and rate of garbage collection invocations.
|
||||
We now try to avoid calling GC during the script execution and perform all the work in the GcJob part of the frame (it could be seen in the performance profiler). When possible, we can now skip that job in the frame completely, if we have some memory budget available.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue