luau/Analysis/src
Vighnesh-V 2e6fdd90a0
Some checks failed
benchmark / callgrind (map[branch:main name:luau-lang/benchmark-data], ubuntu-22.04) (push) Has been cancelled
build / macos (push) Has been cancelled
build / macos-arm (push) Has been cancelled
build / ubuntu (push) Has been cancelled
build / windows (Win32) (push) Has been cancelled
build / windows (x64) (push) Has been cancelled
build / coverage (push) Has been cancelled
build / web (push) Has been cancelled
release / macos (push) Has been cancelled
release / ubuntu (push) Has been cancelled
release / windows (push) Has been cancelled
release / web (push) Has been cancelled
Sync to upstream/release/655 (#1563)
## New Solver
* Type functions should be able to signal whether or not irreducibility
is due to an error
* Do not generate extra expansion constraint for uninvoked user-defined
type functions
* Print in a user-defined type function reports as an error instead of
logging to stdout
* Many e-graphs bugfixes and performance improvements
* Many general bugfixes and improvements to the new solver as a whole
* Fixed issue with used-defined type functions not being able to call
each other
* Infer types of globals under new type solver

## Fragment Autocomplete
* Miscellaneous fixes to make interop with the old solver better

## Runtime
* Support disabling specific built-in functions from being fast-called
or constant-evaluated (Closes #1538)
* New compiler option `disabledBuiltins` accepts a list of library
function names like "tonumber" or "math.cos"
* Added constant folding for vector arithmetic
* Added constant propagation and type inference for vector globals
(Fixes #1511)
* New compiler option `librariesWithKnownMembers` accepts a list of
libraries for members of which a request for constant value and/or type
will be made
* `libraryMemberTypeCb` callback is called to get the type of a global,
return one of the `LuauBytecodeType` values. 'boolean', 'number',
'string' and 'vector' type are supported.
* `libraryMemberConstantCb` callback is called to setup the constant
value of a global. To set a value, C API `luau_set_compile_constant_*`
or C++ API `setCompileConstant*` functions should be used.

---
Co-authored-by: Aaron Weiss <aaronweiss@roblox.com>
Co-authored-by: Andy Friesen <afriesen@roblox.com>
Co-authored-by: Aviral Goel <agoel@roblox.com>
Co-authored-by: Daniel Angel <danielangel@roblox.com>
Co-authored-by: Jonathan Kelaty <jkelaty@roblox.com>
Co-authored-by: Hunter Goldstein <hgoldstein@roblox.com>
Co-authored-by: Varun Saini <vsaini@roblox.com>
Co-authored-by: Vighnesh Vijay <vvijay@roblox.com>
Co-authored-by: Vyacheslav Egorov <vegorov@roblox.com>

---------

Co-authored-by: Aaron Weiss <aaronweiss@roblox.com>
Co-authored-by: Alexander McCord <amccord@roblox.com>
Co-authored-by: Andy Friesen <afriesen@roblox.com>
Co-authored-by: Aviral Goel <agoel@roblox.com>
Co-authored-by: David Cope <dcope@roblox.com>
Co-authored-by: Lily Brown <lbrown@roblox.com>
Co-authored-by: Vyacheslav Egorov <vegorov@roblox.com>
Co-authored-by: Junseo Yoo <jyoo@roblox.com>
Co-authored-by: Hunter Goldstein <hgoldstein@roblox.com>
Co-authored-by: Varun Saini <61795485+vrn-sn@users.noreply.github.com>
Co-authored-by: Alexander Youngblood <ayoungblood@roblox.com>
Co-authored-by: Varun Saini <vsaini@roblox.com>
Co-authored-by: Andrew Miranti <amiranti@roblox.com>
Co-authored-by: Shiqi Ai <sai@roblox.com>
Co-authored-by: Yohoo Lin <yohoo@roblox.com>
Co-authored-by: Daniel Angel <danielangel@roblox.com>
Co-authored-by: Jonathan Kelaty <jkelaty@roblox.com>
2024-12-13 13:02:30 -08:00
..
Anyification.cpp Sync to upstream/release/637 (#1354) 2024-08-02 07:30:04 -07:00
AnyTypeSummary.cpp Sync to upstream/release/650 (#1502) 2024-11-01 12:06:07 -07:00
ApplyTypeFunction.cpp Sync to upstream/release/582 (#960) 2023-06-23 23:19:39 -07:00
AstJsonEncoder.cpp Support function attributes in luau-ast (#1466) 2024-10-08 06:57:41 -07:00
AstQuery.cpp Sync to upstream/release/650 (#1502) 2024-11-01 12:06:07 -07:00
Autocomplete.cpp Sync to upstream/release/651 (#1513) 2024-11-08 13:41:45 -08:00
AutocompleteCore.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
AutocompleteCore.h Sync to upstream/release/651 (#1513) 2024-11-08 13:41:45 -08:00
BuiltinDefinitions.cpp Sync to upstream/release/654 (#1552) 2024-12-02 16:16:33 -08:00
Clone.cpp Sync to upstream/release/653 (#1541) 2024-11-22 13:00:51 -08:00
Constraint.cpp Sync to upstream/release/651 (#1513) 2024-11-08 13:41:45 -08:00
ConstraintGenerator.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
ConstraintSolver.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
DataFlowGraph.cpp Sync to upstream/release/653 (#1541) 2024-11-22 13:00:51 -08:00
DcrLogger.cpp Sync to upstream/release/637 (#1354) 2024-08-02 07:30:04 -07:00
Def.cpp Sync to upstream/release/619 (#1218) 2024-03-30 16:14:44 -07:00
Differ.cpp Sync to upstream/release/653 (#1541) 2024-11-22 13:00:51 -08:00
EmbeddedBuiltinDefinitions.cpp Sync to upstream/release/654 (#1552) 2024-12-02 16:16:33 -08:00
EqSatSimplification.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
Error.cpp Sync to upstream/release/646 (#1458) 2024-10-04 11:29:55 -07:00
FragmentAutocomplete.cpp Sync to upstream/release/654 (#1552) 2024-12-02 16:16:33 -08:00
Frontend.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
Generalization.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
GlobalTypes.cpp Sync to upstream/release/609 (#1150) 2024-01-19 10:04:46 -08:00
Instantiation.cpp Sync to upstream/release/641 (#1382) 2024-08-30 13:16:51 -07:00
Instantiation2.cpp Sync to upstream/release/637 (#1354) 2024-08-02 07:30:04 -07:00
IostreamHelpers.cpp Sync to upstream/release/645 (#1440) 2024-09-27 11:58:21 -07:00
JsonEmitter.cpp Sync to upstream/release/543 (#657) 2022-09-01 16:14:03 -07:00
Linter.cpp Sync to upstream/release/653 (#1541) 2024-11-22 13:00:51 -08:00
LValue.cpp Sync to upstream/release/527 (#491) 2022-05-19 17:02:24 -07:00
Module.cpp Sync to upstream/release/652 (#1525) 2024-11-15 14:29:30 -08:00
NonStrictTypeChecker.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
Normalize.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
OverloadResolution.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
Quantify.cpp Sync to upstream/release/637 (#1354) 2024-08-02 07:30:04 -07:00
Refinement.cpp Sync to upstream/release/600 (#1076) 2023-10-20 18:10:30 -07:00
RequireTracer.cpp Sync to upstream/release/532 (#545) 2022-06-16 18:05:14 -07:00
Scope.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
Simplify.cpp Sync to upstream/release/652 (#1525) 2024-11-15 14:29:30 -08:00
Substitution.cpp Sync to upstream/release/653 (#1541) 2024-11-22 13:00:51 -08:00
Subtyping.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
Symbol.cpp Sync to upstream/release/651 (#1513) 2024-11-08 13:41:45 -08:00
TableLiteralInference.cpp Sync to upstream/release/652 (#1525) 2024-11-15 14:29:30 -08:00
ToDot.cpp Sync to upstream/release/653 (#1541) 2024-11-22 13:00:51 -08:00
TopoSortStatements.cpp Sync to upstream/release/555 (#768) 2022-12-02 10:09:59 -08:00
ToString.cpp Sync to upstream/release/653 (#1541) 2024-11-22 13:00:51 -08:00
Transpiler.cpp Sync to upstream/release/637 (#1354) 2024-08-02 07:30:04 -07:00
TxnLog.cpp Sync to upstream/release/649 (#1489) 2024-10-25 16:15:01 -04:00
Type.cpp Sync to upstream/release/653 (#1541) 2024-11-22 13:00:51 -08:00
TypeArena.cpp Sync to upstream/release/650 (#1502) 2024-11-01 12:06:07 -07:00
TypeAttach.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
TypeChecker2.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
TypedAllocator.cpp Rename Windows.h to windows.h (#1055) 2023-10-03 06:59:44 -07:00
TypeFunction.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
TypeFunctionReductionGuesser.cpp Sync to upstream/release/645 (#1440) 2024-09-27 11:58:21 -07:00
TypeFunctionRuntime.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
TypeFunctionRuntimeBuilder.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
TypeInfer.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
TypeOrPack.cpp Sync to upstream/release/600 (#1076) 2023-10-20 18:10:30 -07:00
TypePack.cpp Sync to upstream/release/641 (#1382) 2024-08-30 13:16:51 -07:00
TypePath.cpp Sync to upstream/release/646 (#1458) 2024-10-04 11:29:55 -07:00
TypeUtils.cpp Sync to upstream/release/653 (#1541) 2024-11-22 13:00:51 -08:00
Unifiable.cpp Sync to upstream/release/653 (#1541) 2024-11-22 13:00:51 -08:00
Unifier.cpp Sync to upstream/release/653 (#1541) 2024-11-22 13:00:51 -08:00
Unifier2.cpp Sync to upstream/release/653 (#1541) 2024-11-22 13:00:51 -08:00