luau/bench/tests
vegorov-rbx 97965c7c0a
Sync to upstream/release/576 (#928)
* `ClassType` can now have an indexer defined on it. This allows custom
types to be used in `t[x]` expressions.
* Fixed search for closest executable breakpoint line. Previously,
breakpoints might have been skipped in `else` blocks at the end of a
function
* Fixed how unification is performed for two optional types `a? <: b?`,
previously it might have unified either 'a' or 'b' with 'nil'. Note that
this fix is not enabled by default yet (see the list in
`ExperimentalFlags.h`)

In the new type solver, a concept of 'Type Families' has been
introduced.
Type families can be thought of as type aliases with custom type
inference/reduction logic included with them.
For example, we can have an `Add<T, U>` type family that will resolve
the type that is the result of adding two values together.
This will help type inference to figure out what 'T' and 'U' might be
when explicit type annotations are not provided.
In this update we don't define any type families, but they will be added
in the near future.
It is also possible for Luau embedders to define their own type families
in the global/environment scope.

Other changes include:
* Fixed scope used to find out which generic types should be included in
the function generic type list
* Fixed a crash after cyclic bound types were created during unification

And in native code generation (jit):
* Use of arm64 target on M1 now requires macOS 13
* Entry into native code has been optimized. This is especially
important for coroutine call/pcall performance as they involve going
through a C call frame
* LOP_LOADK(X) translation into IR has been improved to enable type
tag/constant propagation
* arm64 can use integer immediate values to synthesize floating-point
values
* x64 assembler removes duplicate 64bit numbers from the data section to
save space
* Linux `perf` can now be used to profile native Luau code (when running
with --codegen-perf CLI argument)
2023-05-12 10:50:47 -07:00
..
shootout Improve readability (#206) 2021-11-19 10:45:53 -08:00
sunspider Sync to upstream/release/536 (#592) 2022-07-14 15:52:26 -07:00
base64.lua Sync to upstream/release/501 (#20) 2021-11-01 14:52:34 -07:00
chess.lua Sync to upstream/release/504 (#200) 2021-11-12 06:27:34 -08:00
life.lua Sync to upstream/release/501 (#20) 2021-11-01 14:52:34 -07:00
matrixmult.lua Sync to upstream/release/576 (#928) 2023-05-12 10:50:47 -07:00
mesh-normal-scalar.lua Sync to upstream/release/576 (#928) 2023-05-12 10:50:47 -07:00
qsort.lua Sync to upstream/release/501 (#20) 2021-11-01 14:52:34 -07:00
sha256.lua Sync to upstream/release/549 (#707) 2022-10-14 12:48:41 -07:00
sieve.lua Sync to upstream/release/501 (#20) 2021-11-01 14:52:34 -07:00
tictactoe.lua Sync to upstream/release/537 (#607) 2022-07-21 14:16:54 -07:00
trig.lua Sync to upstream/release/501 (#20) 2021-11-01 14:52:34 -07:00
voxelgen.lua Sync to upstream/release/551 (#727) 2022-10-28 03:37:29 -07:00