luau/VM/src
ayoungbloodrbx c13b5b7440
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/658 (#1625)
## What's Changed

### General
- Allow types of tables to diverge after using `table.clone` (fixes
#1617).
- Allow 2-argument vector.create in Luau.
- Fix a crash when suggesting autocomplete after encountering parsing
errors.
- Add lua_tolstringatom C API which returns the string length (whether
or not the atom exists) and which extends the existing lua_tostringatom
function the same way lua_tolstring/lua_tostring do.
- Luau now retains the DFGs of typechecked modules.

### Magic Functions Migration Note
We've made a change to the API used to define magic functions.

Previously, we had a set of function pointers on each `FunctionType`
that would be invoked by the type inference engine at the correct point.

The problem we'd run into is that they were all `std::function`s, we'd
grown quite a few of them, and Luau allocates tens of thousands of types
as it performs type inference. This adds up to a large amount of memory
for data that isn't used by 99% of types.

To slim things down a bit, we've replaced all of those `std::function`s
with a single `shared_ptr` to a new interface called `MagicFunction`.
This slims down the memory footprint of each type by about 50 bytes.

The virtual methods of `MagicFunction` have roughly 1:1 correspondence
with the old interface, so updating things should not be too difficult:

* `FunctionType::magicFunction` is now `MagicFunction::handleOldSolver`
* `FunctionType::dcrMagicFunction` is now `MagicFunction::infer`
* `FunctionType::dcrMagicRefinement` is now `MagicFunction::refine`
* `FunctionType::dcrMagicTypeCheck` is now `MagicFunction::typeCheck`

**Full Changelog**:
https://github.com/luau-lang/luau/compare/0.657...0.658

---

Co-authored-by: Andy Friesen <afriesen@roblox.com>
Co-authored-by: Ariel Weiss <aaronweiss@roblox.com>
Co-authored-by: Aviral Goel <agoel@roblox.com>
Co-authored-by: Hunter Goldstein <hgoldstein@roblox.com>
Co-authored-by: Talha Pathan <tpathan@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>
2025-01-24 12:15:19 -08:00
..
lapi.cpp Sync to upstream/release/658 (#1625) 2025-01-24 12:15:19 -08:00
lapi.h Sync to upstream/release/501 (#20) 2021-11-01 14:52:34 -07:00
laux.cpp Sync to upstream/release/600 (#1076) 2023-10-20 18:10:30 -07:00
lbaselib.cpp Sync to upstream/release/539 (#625) 2022-08-04 15:35:33 -07:00
lbitlib.cpp Sync to upstream/release/637 (#1354) 2024-08-02 07:30:04 -07:00
lbuffer.cpp Sync to upstream/release/600 (#1076) 2023-10-20 18:10:30 -07:00
lbuffer.h Sync to upstream/release/600 (#1076) 2023-10-20 18:10:30 -07:00
lbuflib.cpp Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
lbuiltins.cpp Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
lbuiltins.h Sync to upstream/release/551 (#727) 2022-10-28 03:37:29 -07:00
lbytecode.h Sync to upstream/release/529 (#505) 2022-05-26 15:08:16 -07:00
lcommon.h Sync to upstream/release/539 (#625) 2022-08-04 15:35:33 -07:00
lcorolib.cpp Sync to upstream/release/655 (#1563) 2024-12-13 13:02:30 -08:00
ldblib.cpp Sync to upstream/release/650 (#1502) 2024-11-01 12:06:07 -07:00
ldebug.cpp Sync to upstream/release/658 (#1625) 2025-01-24 12:15:19 -08:00
ldebug.h Sync to upstream/release/658 (#1625) 2025-01-24 12:15:19 -08:00
ldo.cpp Sync to upstream/release/656 (#1612) 2025-01-10 11:34:39 -08:00
ldo.h Sync to upstream/release/656 (#1612) 2025-01-10 11:34:39 -08:00
lfunc.cpp Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
lfunc.h Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
lgc.cpp Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
lgc.h Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
lgcdebug.cpp Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
linit.cpp Sync to upstream/release/650 (#1502) 2024-11-01 12:06:07 -07:00
lmathlib.cpp Fix math.map/math.lerp merge fallout (#1621) 2025-01-19 14:14:12 -08:00
lmem.cpp Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
lmem.h Sync to upstream/release/622 (#1232) 2024-04-19 14:48:02 -07:00
lnumprint.cpp Sync to upstream/release/615 (#1175) 2024-03-01 10:45:26 -08:00
lnumutils.h Sync to upstream/release/650 (#1502) 2024-11-01 12:06:07 -07:00
lobject.cpp Sync to upstream/release/652 (#1525) 2024-11-15 14:29:30 -08:00
lobject.h Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
loslib.cpp Sync to upstream/release/603 (#1097) 2023-11-10 13:10:07 -08:00
lperf.cpp Make os.clock use clock_gettime on FreeBSD (#1364) 2024-08-14 08:31:59 -07:00
lstate.cpp Sync to upstream/release/656 (#1612) 2025-01-10 11:34:39 -08:00
lstate.h Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
lstring.cpp Sync to upstream/release/611 (#1160) 2024-02-02 13:32:42 -08:00
lstring.h Sync to upstream/release/539 (#625) 2022-08-04 15:35:33 -07:00
lstrlib.cpp Sync to upstream/release/643 (#1408) 2024-09-13 11:48:25 -07:00
ltable.cpp Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
ltable.h Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
ltablib.cpp Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
ltm.cpp Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
ltm.h Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
ludata.cpp Add lua_getuserdatadtor (#870) 2023-04-11 12:46:55 -07:00
ludata.h Sync to upstream/release/539 (#625) 2022-08-04 15:35:33 -07:00
lutf8lib.cpp Sync to upstream/release/637 (#1354) 2024-08-02 07:30:04 -07:00
lveclib.cpp Add 2-component vector constructor (#1569) 2025-01-17 08:45:03 -08:00
lvm.h Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
lvmexecute.cpp Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
lvmload.cpp Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00
lvmutils.cpp Sync to upstream/release/657 (#1619) 2025-01-17 14:55:39 -08:00