mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Update performance.md
This commit is contained in:
parent
877b9d643d
commit
ec0ac467df
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ Some builtin functions have partial specializations that reduce the cost of the
|
||||||
|
|
||||||
Some functions from `math` library like `math.floor` can additionally take advantage of advanced SIMD instruction sets like SSE4.1 when available.
|
Some functions from `math` library like `math.floor` can additionally take advantage of advanced SIMD instruction sets like SSE4.1 when available.
|
||||||
|
|
||||||
In addition to runtime optimizations for builtin calls, many builtin calls can also be constant-folded by the bytecode compiler when using aggressive optimizations (level 2); this currently applies to most builtin calls with constant arguments and a single return value.
|
In addition to runtime optimizations for builtin calls, many builtin calls can also be constant-folded by the bytecode compiler when using aggressive optimizations (level 2); this currently applies to most builtin calls with constant arguments and a single return value. For builtin calls that can not be constant folded, compiler assumes knowledge of argument/return count (level 2) to produce more efficient bytecode instructions.
|
||||||
|
|
||||||
## Optimized table iteration
|
## Optimized table iteration
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue