luau/CodeGen/src
vegorov-rbx 76f67e0733
Sync to upstream/release/588 (#992)
Type checker/autocomplete:
* `Luau::autocomplete` no longer performs typechecking internally, make
sure to run `Frontend::check` before performing autocomplete requests
* Autocomplete string suggestions without "" are now only suggested
inside the ""
* Autocomplete suggestions now include `function (anonymous autofilled)`
key with a full suggestion for the function expression (with arguments
included) stored in `AutocompleteEntry::insertText`
* `AutocompleteEntry::indexedWithSelf` is provided for function call
suggestions made with `:`
* Cyclic modules now see each other type exports as `any` to prevent
memory use-after-free (similar to module return type)

Runtime:
* Updated inline/loop unroll cost model to better handle assignments
(Fixes https://github.com/Roblox/luau/issues/978)
* `math.noise` speed was improved by ~30%
* `table.concat` speed was improved by ~5-7%
* `tonumber` and `tostring` now have fastcall paths that execute ~1.5x
and ~2.5x faster respectively (fixes #777)
* Fixed crash in `luaL_typename` when index refers to a non-existing
value
* Fixed potential out of memory scenario when using `string.sub` or
`string.char` in a loop
* Fixed behavior of some fastcall builtins when called without arguments
under -O2 to match original functions
* Support for native code execution in VM is now enabled by default
(note: native code still has to be generated explicitly)
* `Codegen::compile` now accepts `CodeGen_OnlyNativeModules` flag. When
set, only modules that have a `--!native` hot-comment at the top will be
compiled to native code

In our new typechecker:
* Generic type packs are no longer considered to be variadic during
unification
* Timeout and cancellation now works in new solver
* Fixed false positive errors around 'table' and 'function' type
refinements
* Table literals now use covariant unification rules. This is sound
since literal has no type specified and has no aliases
* Fixed issues with blocked types escaping the constraint solver
* Fixed more places where error messages that should've been suppressed
were still reported
* Fixed errors when iterating over a top table type

In our native code generation (jit):
* 'DebugLuauAbortingChecks' flag is now supported on A64
* LOP_NEWCLOSURE has been translated to IR
2023-07-28 08:13:53 -07:00
..
AssemblyBuilderA64.cpp Sync to upstream/release/580 (#951) 2023-06-09 10:08:00 -07:00
AssemblyBuilderX64.cpp Sync to upstream/release/581 (#958) 2023-06-16 10:35:18 -07:00
BitUtils.h Sync to upstream/release/574 (#910) 2023-04-28 12:55:13 -07:00
ByteUtils.h Sync to upstream/release/550 (#723) 2022-10-21 10:54:01 -07:00
CodeAllocator.cpp Sync to upstream/release/581 (#958) 2023-06-16 10:35:18 -07:00
CodeBlockUnwind.cpp Sync to upstream/release/584 (#977) 2023-07-14 11:08:53 -07:00
CodeGen.cpp Sync to upstream/release/588 (#992) 2023-07-28 08:13:53 -07:00
CodeGenA64.cpp Sync to upstream/release/583 (#974) 2023-07-07 13:10:48 -07:00
CodeGenA64.h Sync to upstream/release/572 (#899) 2023-04-14 11:06:22 -07:00
CodeGenAssembly.cpp Sync to upstream/release/584 (#977) 2023-07-14 11:08:53 -07:00
CodeGenLower.h Sync to upstream/release/584 (#977) 2023-07-14 11:08:53 -07:00
CodeGenUtils.cpp Sync to upstream/release/580 (#951) 2023-06-09 10:08:00 -07:00
CodeGenUtils.h Sync to upstream/release/580 (#951) 2023-06-09 10:08:00 -07:00
CodeGenX64.cpp Sync to upstream/release/583 (#974) 2023-07-07 13:10:48 -07:00
CodeGenX64.h Sync to upstream/release/572 (#899) 2023-04-14 11:06:22 -07:00
EmitBuiltinsX64.cpp Sync to upstream/release/582 (#960) 2023-06-23 23:19:39 -07:00
EmitBuiltinsX64.h Sync to upstream/release/574 (#910) 2023-04-28 12:55:13 -07:00
EmitCommon.h Sync to upstream/release/584 (#977) 2023-07-14 11:08:53 -07:00
EmitCommonA64.h Sync to upstream/release/574 (#910) 2023-04-28 12:55:13 -07:00
EmitCommonX64.cpp Sync to upstream/release/584 (#977) 2023-07-14 11:08:53 -07:00
EmitCommonX64.h Sync to upstream/release/583 (#974) 2023-07-07 13:10:48 -07:00
EmitInstructionX64.cpp Sync to upstream/release/583 (#974) 2023-07-07 13:10:48 -07:00
EmitInstructionX64.h Sync to upstream/release/581 (#958) 2023-06-16 10:35:18 -07:00
IrAnalysis.cpp Sync to upstream/release/588 (#992) 2023-07-28 08:13:53 -07:00
IrBuilder.cpp Sync to upstream/release/588 (#992) 2023-07-28 08:13:53 -07:00
IrCallWrapperX64.cpp Sync to upstream/release/583 (#974) 2023-07-07 13:10:48 -07:00
IrDump.cpp Sync to upstream/release/588 (#992) 2023-07-28 08:13:53 -07:00
IrLoweringA64.cpp Sync to upstream/release/588 (#992) 2023-07-28 08:13:53 -07:00
IrLoweringA64.h Sync to upstream/release/584 (#977) 2023-07-14 11:08:53 -07:00
IrLoweringX64.cpp Sync to upstream/release/588 (#992) 2023-07-28 08:13:53 -07:00
IrLoweringX64.h Sync to upstream/release/584 (#977) 2023-07-14 11:08:53 -07:00
IrRegAllocA64.cpp Sync to upstream/release/583 (#974) 2023-07-07 13:10:48 -07:00
IrRegAllocA64.h Sync to upstream/release/583 (#974) 2023-07-07 13:10:48 -07:00
IrRegAllocX64.cpp Sync to upstream/release/583 (#974) 2023-07-07 13:10:48 -07:00
IrTranslateBuiltins.cpp Sync to upstream/release/584 (#977) 2023-07-14 11:08:53 -07:00
IrTranslateBuiltins.h Sync to upstream/release/584 (#977) 2023-07-14 11:08:53 -07:00
IrTranslation.cpp Sync to upstream/release/588 (#992) 2023-07-28 08:13:53 -07:00
IrTranslation.h Sync to upstream/release/588 (#992) 2023-07-28 08:13:53 -07:00
IrUtils.cpp Sync to upstream/release/588 (#992) 2023-07-28 08:13:53 -07:00
IrValueLocationTracking.cpp Sync to upstream/release/588 (#992) 2023-07-28 08:13:53 -07:00
IrValueLocationTracking.h Sync to upstream/release/573 (#903) 2023-04-21 15:14:26 -07:00
lcodegen.cpp Add CodeGen C API (#931) 2023-05-18 04:03:29 -07:00
NativeState.cpp Sync to upstream/release/588 (#992) 2023-07-28 08:13:53 -07:00
NativeState.h Sync to upstream/release/588 (#992) 2023-07-28 08:13:53 -07:00
OptimizeConstProp.cpp Sync to upstream/release/588 (#992) 2023-07-28 08:13:53 -07:00
OptimizeFinalX64.cpp Sync to upstream/release/574 (#910) 2023-04-28 12:55:13 -07:00
UnwindBuilderDwarf2.cpp Sync to upstream/release/575 (#919) 2023-05-05 14:52:49 -07:00
UnwindBuilderWin.cpp Sync to upstream/release/575 (#919) 2023-05-05 14:52:49 -07:00