docs: Add compatibility section

The table formatting here is likely not great for our layout, which will
be resolved separately.
This commit is contained in:
Arseny Kapoulkine 2020-06-11 20:25:43 -07:00
parent 742ec27210
commit d1c3499aa4
2 changed files with 102 additions and 1 deletions

101
docs/compatibility.md Normal file
View File

@ -0,0 +1,101 @@
Compatibility
=============
Luau is based on Lua 5.1, and as such incorporates all features of 5.1, except for ones that had to be taken out due to sandboxing limitations. Because of backwards compatibility constraints, we don't remove features deprecated by later versions (e.g. we still support `getfenv`/`setfenv`). Later Lua versions introduce new features into the language and new libraries/functions.
Our overall goal is to incorporate features from the later versions of Lua when it makes sense for us to do so - the motivations behind some newer features are unclear or don't apply to the domain Luau is used in, and many features carry costs that don't always make sense to pay. The rest of this document describes the status of all features of Lua 5.2 and beyond, with the following classification:
- :heavy_check_mark: - the feature is available in Luau
- :x: - the feature is not available in Luau because we don't believe it makes sense to include it
- :heavy_exclamation_mark: - the feature is not available in Luau because of compatibility/sandboxing concerns
- :soon: - the feature is not available in Luau yet but we'd like to include it and are possibly working on it
- :woman_shrugging: - the feature is not available in Luau yet; we don't have strong opinions on it so it might make it at some point
Please note that all of these decisions are not final, they are just our current stance. In some cases evolution of our VM may make a feature that was previously impractical to support due to performance complications feasible. In some cases a feature that didn't have a strong use case gains one, so we can implement it.
Implementation limits
=====================
Luau has certain limitations around the number of local variables, registers, upvalues, constants and instructions. These limits are often different from the limits imposed by various versions of Lua, and are documented here without promising that future versions will adhere to these. Note that writing code that is close to any of these limits is dangerous because this code may become invalid as our codegen evolves.
- Local variables: 200 per function (same as all versions of Lua, this includes function arguments)
- Upvalues: 200 per function (up from 60 in Lua 5.1)
- Registers: 255 per function (same as all versions of Lua, this includes local variables and function arguments)
- Constants: 2^23 per function (up from 2^18 in Lua 5.1)
- Instructions: 2^23 per function (up from 2^17 in Lua 5.1, although in both cases the limit only applies to control flow)
Note that Lua 5.3 has a larger upvalue limit (255) and a larger constant limit (2^26); existing Luau limits are likely sufficient for reasonable use cases.
Lua 5.2
=======
| feature | status | notes |
|---------|--------|------|
| yieldable pcall and metamethods | :heavy_check_mark:/:x: | pcall/xpcall supports yielding but metamethods don't |
| ephemeron tables | :x: | this complicates the garbage collector esp. for large weak tables |
| emergency garbage collector | :x: | Luau runs in environments where handling memory exhaustion in emergency situations is not tenable |
| goto statement | :x: | this complicates the compiler due to handling of locals and doesn't address a significant need |
| finalizers for tables | :x: | no `__gc` support due to sandboxing and performance/complexity |
| no more fenv for threads or functions | :heavy_exclamation_mark: | we love this, but it breaks compatibility |
| tables honor the `__len` metamethod | :x: | performance implications, no strong use cases
| hex and `\z` escapes in strings (also `\u` for Unicode) | :heavy_check_mark: | |
| support for hexadecimal floats | :woman_shrugging: | no strong use cases |
| order metamethods work for different types | :x: | no strong use cases and more complicated semantics + compat |
| empty statement | :heavy_check_mark: | |
| `break` statement may appear in the middle of a block | :woman_shrugging: | we'd like to do it for return/continue as well but there be dragons |
| arguments for function called through `xpcall` | :heavy_check_mark: | |
| optional base in `math.log` | :heavy_check_mark: | |
| optional separator in `string.rep` | :woman_shrugging: | no real use cases |
| new metamethods `__pairs` and `__ipairs` | :x: | would like to reevaluate iteration design long term |
| frontier patterns | :heavy_check_mark: | |
| `%g` in patterns | :woman_shrugging: | no strong use cases but no major implications |
| `\0` in patterns | :woman_shrugging: | no strong use cases but no major implications |
| `bit32` library | :heavy_check_mark: | |
Two things that are important to call out here are various new metamethods for tables and yielding in metamethods. In both cases, there are performance implications to supporting this - our implementation is *very* highly tuned for performance, so any changes that affect the core fundamentals of how Lua works have a price. To support yielding in metamethods we'd need to make the core of the VM more involved, since almost every single "interesting" opcode would need to learn how to be resumable - which also complicates future JIT/AOT story. Metamethods in general are important for extensibility, but very challenging to deal with in implementation, so we err on the side of not supporting any new metamethods unless a strong need arises.
For `__pairs`/`__ipairs`, we aren't sure that this is the right design choice - self-iterating tables via `__iter` are very appealing, and if we can resolve some challenges with array iteration order, that would make the language more accessible so we may go that route instead.
Lua 5.3
=======
| feature | status | notes |
|---------|--------|------|
| integers (64-bit by default) | :x: | this has backwards compatibility and performance implications |
| bitwise operators | :x: | `bit32` library covers this, makes less sense without integers |
| basic utf-8 support | :heavy_check_mark: | we include `utf8` library and other UTF8 features |
| functions for packing and unpacking values (string.pack/unpack/packsize) | :soon: | the design needs tweaks but it's very useful for working with binary data |
| floor division | :x: | no strong use cases, syntax overlaps with C comments
| `ipairs` and the `table` library respect metamethods | :x: | no strong use cases, performance implications
| new function `table.move` | :heavy_check_mark: | |
| `collectgarbage("count")` now returns only one result | :heavy_check_mark: | |
| `coroutine.isyieldable` | :heavy_check_mark: | |
It's important to highlight integer support and bitwise operators. For Luau, it's rare that a full 64-bit integer type is necessary - double-precision types support integers up to 2^53 (in Lua which is used in embedded space, integers may be more appealing in environments without a native 64-bit FPU). However, there's a *lot* of value in having a single number type, both from performance perspective and for consistency. Notably, Lua doesn't handle integer overflow properly, so using integers also carries compatibility implications.
If integers are taken out of the equation, bitwise operators make much less sense; additionally, `bit32` library is more fully featured (includes commonly used operations such as rotates and arithmetic shift; bit extraction/replacement is also more readable). Adding operators along with metamethods for all of them increases complexity, which means this feature isn't worth it on the balance.
Floor division is less harmful, but it's used rarely enough that `math.floor(a/b)` seems like an adequate replacement; additionally, `//` is a comment in C-derived languages and we may decide to adopt it in addition to `--` at some point.
Lua 5.4
=======
| feature | status | notes |
|--|--|--|
| new generational mode for garbage collection | :soon: | we're working on gc optimizations and generational mode is on our radar
| to-be-closed variables | :x: | the syntax is ugly and inconsistent with how we'd like to do attributes long-term; no strong use cases in our domain |
| const variables | :x: | while there's some demand for const variables, we'd never adopt this syntax
| new implementation for math.random | :heavy_check_mark: | our RNG is based on PCG, unlike Lua 5.4 which uses Xoroshiro |
| optional `init` argument to `string.gmatch` | :woman_shrugging: | no strong use cases
| new functions `lua_resetthread` and `coroutine.close` | :x: | not useful without to-be-closed variables
| coersions string-to-number moved to the string library | :heavy_exclamation_mark: | we love this, but it breaks compatibility
| new format `%p` in `string.format` | :woman_shrugging: | no strong use cases |
| `utf8` library accepts codepoints up to 2^31 | :woman_shrugging: | no strong use cases |
| The use of the `__lt` metamethod to emulate `__le` has been removed | :heavy_exclamation_mark: | breaks compatibility and doesn't seem very interesting otherwise |
| When finalizing objects, Lua will call `__gc` metamethods that are not functions | :x: | no `__gc` support due to sandboxing and performance/complexity |
| The function print calls `__tostring` instead of tostring to format its arguments. | :soon: | |
| By default, the decoding functions in the utf8 library do not accept surrogates. | :heavy_exclamation_mark: | breaks compatibility and doesn't seem very interesting otherwise |
Lua has a beautiful syntax and frankly we're disappointed in the `<const>`/`<toclose>` which takes away from that beauty. Taking syntax aside, `<toclose>` isn't very useful in Luau - its dominant use case is for code that works with external resources like files or sockets, but we don't provide such APIs - and has a very large complexity cost, evidences by a lot of bug fixes since the initial implementation in 5.4 work versions. `<const>` in Luau doesn't matter for performance - our multi-pass compiler is already able to analyze the usage of the variable to know if it's modified or not and extract all performance gains from it - so the only use here is for code readability, where the `<const>` syntax is... suboptimal.
If we do end up introducing const variables, it would be through a `const var = value` syntax, which is backwards compatible through a context-sensitive keyword similar to `type`.

View File

@ -46,4 +46,4 @@ As a language, Luau is a full superset of Lua 5.1. As far as standard library is
Performance
===========
In addition to a completely custom front end that implements parsing, linting and type checking, Luau runtime features new bytecode, interpreter and compiler that are heavily tuned for performance. Luau currently does not implement Just-In-Time compilation, but its interpreter is often competitive with LuaJIT interpreter on a wide set of benchmarks. We continue to optimize the runtime and rewrite portions of it to be even more efficient, including plans for a new garbage collector and further library optimizations, as well as an eventual JIT/AOT option.
In addition to a completely custom front end that implements parsing, linting and type checking, Luau runtime features new bytecode, interpreter and compiler that are heavily tuned for performance. Luau currently does not implement Just-In-Time compilation, but its interpreter is often competitive with LuaJIT interpreter on a wide set of benchmarks. We continue to optimize the runtime and rewrite portions of it to be even more efficient, including plans for a new garbage collector and further library optimizations, as well as an eventual JIT/AOT option. While our overall goal is to minimize the amount of time programmers spend tuning performance, some details about the performance characteristics are [provided for inquisitive minds](performance.md).