mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 14:25:44 +08:00
Sync to upstream/release/630
This commit is contained in:
parent
5dd97352c1
commit
58b98097c5
@ -118,7 +118,7 @@ struct ConstraintGenerator
|
||||
std::function<void(const ModuleName&, const ScopePtr&)> prepareModuleScope;
|
||||
std::vector<RequireCycle> requireCycles;
|
||||
|
||||
DenseHashMap<TypeId, std::vector<TypeId>> localTypes{nullptr};
|
||||
DenseHashMap<TypeId, TypeIds> localTypes{nullptr};
|
||||
|
||||
DcrLogger* logger;
|
||||
|
||||
|
@ -94,6 +94,10 @@ struct ConstraintSolver
|
||||
// Irreducible/uninhabited type families or type pack families.
|
||||
DenseHashSet<const void*> uninhabitedTypeFamilies{{}};
|
||||
|
||||
// The set of types that will definitely be unchanged by generalization.
|
||||
DenseHashSet<TypeId> generalizedTypes_{nullptr};
|
||||
const NotNull<DenseHashSet<TypeId>> generalizedTypes{&generalizedTypes_};
|
||||
|
||||
// Recorded errors that take place within the solver.
|
||||
ErrorVec errors;
|
||||
|
||||
@ -103,6 +107,8 @@ struct ConstraintSolver
|
||||
DcrLogger* logger;
|
||||
TypeCheckLimits limits;
|
||||
|
||||
DenseHashMap<TypeId, const Constraint*> typeFamiliesToFinalize{nullptr};
|
||||
|
||||
explicit ConstraintSolver(NotNull<Normalizer> normalizer, NotNull<Scope> rootScope, std::vector<NotNull<Constraint>> constraints,
|
||||
ModuleName moduleName, NotNull<ModuleResolver> moduleResolver, std::vector<RequireCycle> requireCycles, DcrLogger* logger,
|
||||
TypeCheckLimits limits);
|
||||
@ -116,8 +122,35 @@ struct ConstraintSolver
|
||||
**/
|
||||
void run();
|
||||
|
||||
|
||||
/**
|
||||
* Attempts to perform one final reduction on type families after every constraint has been completed
|
||||
*
|
||||
**/
|
||||
void finalizeTypeFamilies();
|
||||
|
||||
bool isDone();
|
||||
|
||||
private:
|
||||
/**
|
||||
* Bind a type variable to another type.
|
||||
*
|
||||
* A constraint is required and will validate that blockedTy is owned by this
|
||||
* constraint. This prevents one constraint from interfering with another's
|
||||
* blocked types.
|
||||
*
|
||||
* Bind will also unblock the type variable for you.
|
||||
*/
|
||||
void bind(NotNull<const Constraint> constraint, TypeId ty, TypeId boundTo);
|
||||
void bind(NotNull<const Constraint> constraint, TypePackId tp, TypePackId boundTo);
|
||||
|
||||
template<typename T, typename... Args>
|
||||
void emplace(NotNull<const Constraint> constraint, TypeId ty, Args&&... args);
|
||||
|
||||
template<typename T, typename... Args>
|
||||
void emplace(NotNull<const Constraint> constraint, TypePackId tp, Args&&... args);
|
||||
|
||||
public:
|
||||
/** Attempt to dispatch a constraint. Returns true if it was successful. If
|
||||
* tryDispatch() returns false, the constraint remains in the unsolved set
|
||||
* and will be retried later.
|
||||
@ -135,19 +168,14 @@ struct ConstraintSolver
|
||||
bool tryDispatch(const PrimitiveTypeConstraint& c, NotNull<const Constraint> constraint);
|
||||
bool tryDispatch(const HasPropConstraint& c, NotNull<const Constraint> constraint);
|
||||
|
||||
|
||||
bool tryDispatchHasIndexer(
|
||||
int& recursionDepth, NotNull<const Constraint> constraint, TypeId subjectType, TypeId indexType, TypeId resultType, Set<TypeId>& seen);
|
||||
bool tryDispatch(const HasIndexerConstraint& c, NotNull<const Constraint> constraint);
|
||||
|
||||
std::pair<bool, std::optional<TypeId>> tryDispatchSetIndexer(
|
||||
NotNull<const Constraint> constraint, TypeId subjectType, TypeId indexType, TypeId propType, bool expandFreeTypeBounds);
|
||||
|
||||
bool tryDispatch(const AssignPropConstraint& c, NotNull<const Constraint> constraint);
|
||||
bool tryDispatch(const AssignIndexConstraint& c, NotNull<const Constraint> constraint);
|
||||
|
||||
bool tryDispatchUnpack1(NotNull<const Constraint> constraint, TypeId resultType, TypeId sourceType);
|
||||
bool tryDispatch(const UnpackConstraint& c, NotNull<const Constraint> constraint);
|
||||
|
||||
bool tryDispatch(const ReduceConstraint& c, NotNull<const Constraint> constraint, bool force);
|
||||
bool tryDispatch(const ReducePackConstraint& c, NotNull<const Constraint> constraint, bool force);
|
||||
bool tryDispatch(const EqualityConstraint& c, NotNull<const Constraint> constraint, bool force);
|
||||
@ -298,22 +326,6 @@ struct ConstraintSolver
|
||||
template<typename TID>
|
||||
bool unify(NotNull<const Constraint> constraint, TID subTy, TID superTy);
|
||||
|
||||
private:
|
||||
/**
|
||||
* Bind a BlockedType to another type while taking care not to bind it to
|
||||
* itself in the case that resultTy == blockedTy. This can happen if we
|
||||
* have a tautological constraint. When it does, we must instead bind
|
||||
* blockedTy to a fresh type belonging to an appropriate scope.
|
||||
*
|
||||
* To determine which scope is appropriate, we also accept rootTy, which is
|
||||
* to be the type that contains blockedTy.
|
||||
*
|
||||
* A constraint is required and will validate that blockedTy is owned by this
|
||||
* constraint. This prevents one constraint from interfering with another's
|
||||
* blocked types.
|
||||
*/
|
||||
void bindBlockedType(TypeId blockedTy, TypeId resultTy, TypeId rootTy, NotNull<const Constraint> constraint);
|
||||
|
||||
/**
|
||||
* Marks a constraint as being blocked on a type or type pack. The constraint
|
||||
* solver will not attempt to dispatch blocked constraints until their
|
||||
|
@ -8,6 +8,6 @@
|
||||
namespace Luau
|
||||
{
|
||||
|
||||
std::optional<TypeId> generalize(NotNull<TypeArena> arena, NotNull<BuiltinTypes> builtinTypes, NotNull<Scope> scope, TypeId ty);
|
||||
std::optional<TypeId> generalize(NotNull<TypeArena> arena, NotNull<BuiltinTypes> builtinTypes, NotNull<Scope> scope, NotNull<DenseHashSet<TypeId>> bakedTypes, TypeId ty);
|
||||
|
||||
}
|
||||
|
@ -102,6 +102,12 @@ struct Module
|
||||
DenseHashMap<const AstType*, TypeId> astResolvedTypes{nullptr};
|
||||
DenseHashMap<const AstTypePack*, TypePackId> astResolvedTypePacks{nullptr};
|
||||
|
||||
// The computed result type of a compound assignment. (eg foo += 1)
|
||||
//
|
||||
// Type checking uses this to check that the result of such an operation is
|
||||
// actually compatible with the left-side operand.
|
||||
DenseHashMap<const AstStat*, TypeId> astCompoundAssignResultTypes{nullptr};
|
||||
|
||||
DenseHashMap<TypeId, std::vector<std::pair<Location, TypeId>>> upperBoundContributors{nullptr};
|
||||
|
||||
// Map AST nodes to the scope they create. Cannot be NotNull<Scope> because
|
||||
|
@ -658,7 +658,7 @@ struct NegationType
|
||||
using ErrorType = Unifiable::Error;
|
||||
|
||||
using TypeVariant =
|
||||
Unifiable::Variant<TypeId, FreeType, GenericType, PrimitiveType, BlockedType, PendingExpansionType, SingletonType, FunctionType, TableType,
|
||||
Unifiable::Variant<TypeId, FreeType, GenericType, PrimitiveType, SingletonType, BlockedType, PendingExpansionType, FunctionType, TableType,
|
||||
MetatableType, ClassType, AnyType, UnionType, IntersectionType, LazyType, UnknownType, NeverType, NegationType, TypeFamilyInstanceType>;
|
||||
|
||||
struct Type final
|
||||
|
@ -179,6 +179,8 @@ struct BuiltinTypeFamilies
|
||||
TypeFamily keyofFamily;
|
||||
TypeFamily rawkeyofFamily;
|
||||
|
||||
TypeFamily indexFamily;
|
||||
|
||||
void addToScope(NotNull<TypeArena> arena, NotNull<Scope> scope) const;
|
||||
};
|
||||
|
||||
|
@ -93,6 +93,10 @@ DenseHashSet<TypeId> Constraint::getMaybeMutatedFreeTypes() const
|
||||
{
|
||||
rci.traverse(taec->target);
|
||||
}
|
||||
else if (auto fchc = get<FunctionCheckConstraint>(*this))
|
||||
{
|
||||
rci.traverse(fchc->argsPack);
|
||||
}
|
||||
else if (auto ptc = get<PrimitiveTypeConstraint>(*this))
|
||||
{
|
||||
rci.traverse(ptc->freeType);
|
||||
|
@ -253,7 +253,11 @@ void ConstraintGenerator::visitModuleRoot(AstStatBlock* block)
|
||||
// FIXME: This isn't the most efficient thing.
|
||||
TypeId domainTy = builtinTypes->neverType;
|
||||
for (TypeId d : domain)
|
||||
{
|
||||
if (d == ty)
|
||||
continue;
|
||||
domainTy = simplifyUnion(builtinTypes, arena, domainTy, d).result;
|
||||
}
|
||||
|
||||
LUAU_ASSERT(get<BlockedType>(ty));
|
||||
asMutable(ty)->ty.emplace<BoundType>(domainTy);
|
||||
@ -323,7 +327,7 @@ std::optional<TypeId> ConstraintGenerator::lookup(const ScopePtr& scope, Locatio
|
||||
if (!ty)
|
||||
{
|
||||
ty = arena->addType(BlockedType{});
|
||||
localTypes[*ty] = {};
|
||||
localTypes.try_insert(*ty, {});
|
||||
rootScope->lvalueTypes[operand] = *ty;
|
||||
}
|
||||
|
||||
@ -717,7 +721,7 @@ ControlFlow ConstraintGenerator::visit(const ScopePtr& scope, AstStatLocal* stat
|
||||
const Location location = local->location;
|
||||
|
||||
TypeId assignee = arena->addType(BlockedType{});
|
||||
localTypes[assignee] = {};
|
||||
localTypes.try_insert(assignee, {});
|
||||
|
||||
assignees.push_back(assignee);
|
||||
|
||||
@ -756,9 +760,9 @@ ControlFlow ConstraintGenerator::visit(const ScopePtr& scope, AstStatLocal* stat
|
||||
for (size_t i = 0; i < statLocal->vars.size; ++i)
|
||||
{
|
||||
LUAU_ASSERT(get<BlockedType>(assignees[i]));
|
||||
std::vector<TypeId>* localDomain = localTypes.find(assignees[i]);
|
||||
TypeIds* localDomain = localTypes.find(assignees[i]);
|
||||
LUAU_ASSERT(localDomain);
|
||||
localDomain->push_back(annotatedTypes[i]);
|
||||
localDomain->insert(annotatedTypes[i]);
|
||||
}
|
||||
|
||||
TypePackId annotatedPack = arena->addTypePack(std::move(annotatedTypes));
|
||||
@ -790,9 +794,9 @@ ControlFlow ConstraintGenerator::visit(const ScopePtr& scope, AstStatLocal* stat
|
||||
for (size_t i = 0; i < statLocal->vars.size; ++i)
|
||||
{
|
||||
LUAU_ASSERT(get<BlockedType>(assignees[i]));
|
||||
std::vector<TypeId>* localDomain = localTypes.find(assignees[i]);
|
||||
TypeIds* localDomain = localTypes.find(assignees[i]);
|
||||
LUAU_ASSERT(localDomain);
|
||||
localDomain->push_back(valueTypes[i]);
|
||||
localDomain->insert(valueTypes[i]);
|
||||
}
|
||||
}
|
||||
|
||||
@ -898,7 +902,7 @@ ControlFlow ConstraintGenerator::visit(const ScopePtr& scope, AstStatForIn* forI
|
||||
variableTypes.push_back(assignee);
|
||||
|
||||
TypeId loopVar = arena->addType(BlockedType{});
|
||||
localTypes[loopVar].push_back(assignee);
|
||||
localTypes[loopVar].insert(assignee);
|
||||
|
||||
if (var->annotation)
|
||||
{
|
||||
@ -1183,8 +1187,13 @@ ControlFlow ConstraintGenerator::visit(const ScopePtr& scope, AstStatCompoundAss
|
||||
{
|
||||
AstExprBinary binop = AstExprBinary{assign->location, assign->op, assign->var, assign->value};
|
||||
TypeId resultTy = check(scope, &binop).ty;
|
||||
module->astCompoundAssignResultTypes[assign] = resultTy;
|
||||
|
||||
visitLValue(scope, assign->var, resultTy);
|
||||
TypeId lhsType = check(scope, assign->var).ty;
|
||||
visitLValue(scope, assign->var, lhsType);
|
||||
|
||||
follow(lhsType);
|
||||
follow(resultTy);
|
||||
|
||||
return ControlFlow::None;
|
||||
}
|
||||
@ -1383,16 +1392,15 @@ ControlFlow ConstraintGenerator::visit(const ScopePtr& scope, AstStatDeclareClas
|
||||
}
|
||||
}
|
||||
|
||||
if (ctv->props.count(propName) == 0)
|
||||
TableType::Props& props = assignToMetatable ? metatable->props : ctv->props;
|
||||
|
||||
if (props.count(propName) == 0)
|
||||
{
|
||||
if (assignToMetatable)
|
||||
metatable->props[propName] = {propTy};
|
||||
else
|
||||
ctv->props[propName] = {propTy};
|
||||
props[propName] = {propTy};
|
||||
}
|
||||
else
|
||||
{
|
||||
TypeId currentTy = assignToMetatable ? metatable->props[propName].type() : ctv->props[propName].type();
|
||||
TypeId currentTy = props[propName].type();
|
||||
|
||||
// We special-case this logic to keep the intersection flat; otherwise we
|
||||
// would create a ton of nested intersection types.
|
||||
@ -1402,19 +1410,13 @@ ControlFlow ConstraintGenerator::visit(const ScopePtr& scope, AstStatDeclareClas
|
||||
options.push_back(propTy);
|
||||
TypeId newItv = arena->addType(IntersectionType{std::move(options)});
|
||||
|
||||
if (assignToMetatable)
|
||||
metatable->props[propName] = {newItv};
|
||||
else
|
||||
ctv->props[propName] = {newItv};
|
||||
props[propName] = {newItv};
|
||||
}
|
||||
else if (get<FunctionType>(currentTy))
|
||||
{
|
||||
TypeId intersection = arena->addType(IntersectionType{{currentTy, propTy}});
|
||||
|
||||
if (assignToMetatable)
|
||||
metatable->props[propName] = {intersection};
|
||||
else
|
||||
ctv->props[propName] = {intersection};
|
||||
props[propName] = {intersection};
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1913,8 +1915,8 @@ Inference ConstraintGenerator::checkIndexName(
|
||||
// the current lexical position within the script.
|
||||
if (!tt)
|
||||
{
|
||||
if (auto localDomain = localTypes.find(obj); localDomain && 1 == localDomain->size())
|
||||
tt = getTableType(localDomain->front());
|
||||
if (TypeIds* localDomain = localTypes.find(obj); localDomain && 1 == localDomain->size())
|
||||
tt = getTableType(*localDomain->begin());
|
||||
}
|
||||
|
||||
if (tt)
|
||||
@ -2327,14 +2329,14 @@ void ConstraintGenerator::visitLValue(const ScopePtr& scope, AstExprLocal* local
|
||||
|
||||
if (ty)
|
||||
{
|
||||
std::vector<TypeId>* localDomain = localTypes.find(*ty);
|
||||
TypeIds* localDomain = localTypes.find(*ty);
|
||||
if (localDomain)
|
||||
localDomain->push_back(rhsType);
|
||||
localDomain->insert(rhsType);
|
||||
}
|
||||
else
|
||||
{
|
||||
ty = arena->addType(BlockedType{});
|
||||
localTypes[*ty].push_back(rhsType);
|
||||
localTypes[*ty].insert(rhsType);
|
||||
|
||||
if (annotatedTy)
|
||||
{
|
||||
@ -2359,8 +2361,8 @@ void ConstraintGenerator::visitLValue(const ScopePtr& scope, AstExprLocal* local
|
||||
if (annotatedTy)
|
||||
addConstraint(scope, local->location, SubtypeConstraint{rhsType, *annotatedTy});
|
||||
|
||||
if (auto localDomain = localTypes.find(*ty))
|
||||
localDomain->push_back(rhsType);
|
||||
if (TypeIds* localDomain = localTypes.find(*ty))
|
||||
localDomain->insert(rhsType);
|
||||
}
|
||||
|
||||
void ConstraintGenerator::visitLValue(const ScopePtr& scope, AstExprGlobal* global, TypeId rhsType)
|
||||
@ -2383,7 +2385,8 @@ void ConstraintGenerator::visitLValue(const ScopePtr& scope, AstExprIndexName* e
|
||||
|
||||
bool incremented = recordPropertyAssignment(lhsTy);
|
||||
|
||||
addConstraint(scope, expr->location, AssignPropConstraint{lhsTy, expr->index.value, rhsType, propTy, incremented});
|
||||
auto apc = addConstraint(scope, expr->location, AssignPropConstraint{lhsTy, expr->index.value, rhsType, propTy, incremented});
|
||||
getMutable<BlockedType>(propTy)->setOwner(apc);
|
||||
}
|
||||
|
||||
void ConstraintGenerator::visitLValue(const ScopePtr& scope, AstExprIndexExpr* expr, TypeId rhsType)
|
||||
@ -2398,7 +2401,8 @@ void ConstraintGenerator::visitLValue(const ScopePtr& scope, AstExprIndexExpr* e
|
||||
|
||||
bool incremented = recordPropertyAssignment(lhsTy);
|
||||
|
||||
addConstraint(scope, expr->location, AssignPropConstraint{lhsTy, std::move(propName), rhsType, propTy, incremented});
|
||||
auto apc = addConstraint(scope, expr->location, AssignPropConstraint{lhsTy, std::move(propName), rhsType, propTy, incremented});
|
||||
getMutable<BlockedType>(propTy)->setOwner(apc);
|
||||
|
||||
return;
|
||||
}
|
||||
@ -2407,7 +2411,8 @@ void ConstraintGenerator::visitLValue(const ScopePtr& scope, AstExprIndexExpr* e
|
||||
TypeId indexTy = check(scope, expr->index).ty;
|
||||
TypeId propTy = arena->addType(BlockedType{});
|
||||
module->astTypes[expr] = propTy;
|
||||
addConstraint(scope, expr->location, AssignIndexConstraint{lhsTy, indexTy, rhsType, propTy});
|
||||
auto aic = addConstraint(scope, expr->location, AssignIndexConstraint{lhsTy, indexTy, rhsType, propTy});
|
||||
getMutable<BlockedType>(propTy)->setOwner(aic);
|
||||
}
|
||||
|
||||
Inference ConstraintGenerator::check(const ScopePtr& scope, AstExprTable* expr, std::optional<TypeId> expectedType)
|
||||
@ -2447,7 +2452,8 @@ Inference ConstraintGenerator::check(const ScopePtr& scope, AstExprTable* expr,
|
||||
|
||||
if (AstExprConstantString* key = item.key->as<AstExprConstantString>())
|
||||
{
|
||||
ttv->props[key->value.begin()] = {itemTy};
|
||||
std::string propName{key->value.data, key->value.size};
|
||||
ttv->props[propName] = {itemTy};
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -3187,7 +3193,7 @@ bool ConstraintGenerator::recordPropertyAssignment(TypeId ty)
|
||||
}
|
||||
else if (auto mt = get<MetatableType>(t))
|
||||
queue.push_back(mt->table);
|
||||
else if (auto localDomain = localTypes.find(t))
|
||||
else if (TypeIds* localDomain = localTypes.find(t))
|
||||
{
|
||||
for (TypeId domainTy : *localDomain)
|
||||
queue.push_back(domainTy);
|
||||
|
@ -1,9 +1,9 @@
|
||||
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
||||
#include "Luau/ConstraintSolver.h"
|
||||
|
||||
#include "Luau/Anyification.h"
|
||||
#include "Luau/ApplyTypeFunction.h"
|
||||
#include "Luau/Common.h"
|
||||
#include "Luau/ConstraintSolver.h"
|
||||
#include "Luau/DcrLogger.h"
|
||||
#include "Luau/Generalization.h"
|
||||
#include "Luau/Instantiation.h"
|
||||
@ -22,8 +22,8 @@
|
||||
#include "Luau/TypeFwd.h"
|
||||
#include "Luau/TypeUtils.h"
|
||||
#include "Luau/Unifier2.h"
|
||||
#include "Luau/VecDeque.h"
|
||||
#include "Luau/VisitType.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <utility>
|
||||
|
||||
@ -67,7 +67,11 @@ size_t HashBlockedConstraintId::operator()(const BlockedConstraintId& bci) const
|
||||
[[maybe_unused]] static bool canMutate(TypeId ty, NotNull<const Constraint> constraint)
|
||||
{
|
||||
if (auto blocked = get<BlockedType>(ty))
|
||||
return blocked->getOwner() == constraint;
|
||||
{
|
||||
Constraint* owner = blocked->getOwner();
|
||||
LUAU_ASSERT(owner);
|
||||
return owner == constraint;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -76,7 +80,11 @@ size_t HashBlockedConstraintId::operator()(const BlockedConstraintId& bci) const
|
||||
[[maybe_unused]] static bool canMutate(TypePackId tp, NotNull<const Constraint> constraint)
|
||||
{
|
||||
if (auto blocked = get<BlockedTypePack>(tp))
|
||||
return blocked->owner == nullptr || blocked->owner == constraint;
|
||||
{
|
||||
Constraint* owner = blocked->owner;
|
||||
LUAU_ASSERT(owner);
|
||||
return owner == constraint;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -478,6 +486,12 @@ void ConstraintSolver::run()
|
||||
progress |= runSolverPass(true);
|
||||
} while (progress);
|
||||
|
||||
// After we have run all the constraints, type families should be generalized
|
||||
// At this point, we can try to perform one final simplification to suss out
|
||||
// whether type families are truly uninhabited or if they can reduce
|
||||
|
||||
finalizeTypeFamilies();
|
||||
|
||||
if (FFlag::DebugLuauLogSolver || FFlag::DebugLuauLogBindings)
|
||||
dumpBindings(rootScope, opts);
|
||||
|
||||
@ -487,6 +501,25 @@ void ConstraintSolver::run()
|
||||
}
|
||||
}
|
||||
|
||||
void ConstraintSolver::finalizeTypeFamilies()
|
||||
{
|
||||
// At this point, we've generalized. Let's try to finish reducing as much as we can, we'll leave warning to the typechecker
|
||||
for (auto [t, constraint] : typeFamiliesToFinalize)
|
||||
{
|
||||
TypeId ty = follow(t);
|
||||
if (get<TypeFamilyInstanceType>(ty))
|
||||
{
|
||||
FamilyGraphReductionResult result =
|
||||
reduceFamilies(t, constraint->location, TypeFamilyContext{NotNull{this}, constraint->scope, NotNull{constraint}}, true);
|
||||
|
||||
for (TypeId r : result.reducedTypes)
|
||||
unblock(r, constraint->location);
|
||||
for (TypePackId r : result.reducedPacks)
|
||||
unblock(r, constraint->location);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool ConstraintSolver::isDone()
|
||||
{
|
||||
return unsolvedConstraints.empty();
|
||||
@ -503,6 +536,56 @@ struct TypeAndLocation
|
||||
|
||||
} // namespace
|
||||
|
||||
void ConstraintSolver::bind(NotNull<const Constraint> constraint, TypeId ty, TypeId boundTo)
|
||||
{
|
||||
LUAU_ASSERT(get<BlockedType>(ty) || get<FreeType>(ty) || get<PendingExpansionType>(ty));
|
||||
LUAU_ASSERT(canMutate(ty, constraint));
|
||||
|
||||
boundTo = follow(boundTo);
|
||||
if (get<BlockedType>(ty) && ty == boundTo)
|
||||
return emplace<FreeType>(constraint, ty, constraint->scope, builtinTypes->neverType, builtinTypes->unknownType);
|
||||
|
||||
shiftReferences(ty, boundTo);
|
||||
emplaceType<BoundType>(asMutable(ty), boundTo);
|
||||
unblock(ty, constraint->location);
|
||||
}
|
||||
|
||||
void ConstraintSolver::bind(NotNull<const Constraint> constraint, TypePackId tp, TypePackId boundTo)
|
||||
{
|
||||
LUAU_ASSERT(get<BlockedTypePack>(tp) || get<FreeTypePack>(tp));
|
||||
LUAU_ASSERT(canMutate(tp, constraint));
|
||||
|
||||
boundTo = follow(boundTo);
|
||||
LUAU_ASSERT(tp != boundTo);
|
||||
|
||||
emplaceTypePack<BoundTypePack>(asMutable(tp), boundTo);
|
||||
unblock(tp, constraint->location);
|
||||
}
|
||||
|
||||
template<typename T, typename... Args>
|
||||
void ConstraintSolver::emplace(NotNull<const Constraint> constraint, TypeId ty, Args&&... args)
|
||||
{
|
||||
static_assert(!std::is_same_v<T, BoundType>, "cannot use `emplace<BoundType>`! use `bind`");
|
||||
|
||||
LUAU_ASSERT(get<BlockedType>(ty) || get<FreeType>(ty) || get<PendingExpansionType>(ty));
|
||||
LUAU_ASSERT(canMutate(ty, constraint));
|
||||
|
||||
emplaceType<T>(asMutable(ty), std::forward<Args>(args)...);
|
||||
unblock(ty, constraint->location);
|
||||
}
|
||||
|
||||
template<typename T, typename... Args>
|
||||
void ConstraintSolver::emplace(NotNull<const Constraint> constraint, TypePackId tp, Args&&... args)
|
||||
{
|
||||
static_assert(!std::is_same_v<T, BoundTypePack>, "cannot use `emplace<BoundTypePack>`! use `bind`");
|
||||
|
||||
LUAU_ASSERT(get<BlockedTypePack>(tp) || get<FreeTypePack>(tp));
|
||||
LUAU_ASSERT(canMutate(tp, constraint));
|
||||
|
||||
emplaceTypePack<T>(asMutable(tp), std::forward<Args>(args)...);
|
||||
unblock(tp, constraint->location);
|
||||
}
|
||||
|
||||
bool ConstraintSolver::tryDispatch(NotNull<const Constraint> constraint, bool force)
|
||||
{
|
||||
if (!force && isBlocked(constraint))
|
||||
@ -547,9 +630,6 @@ bool ConstraintSolver::tryDispatch(NotNull<const Constraint> constraint, bool fo
|
||||
else
|
||||
LUAU_ASSERT(false);
|
||||
|
||||
if (success)
|
||||
unblock(constraint);
|
||||
|
||||
return success;
|
||||
}
|
||||
|
||||
@ -588,7 +668,7 @@ bool ConstraintSolver::tryDispatch(const GeneralizationConstraint& c, NotNull<co
|
||||
|
||||
std::optional<QuantifierResult> generalized;
|
||||
|
||||
std::optional<TypeId> generalizedTy = generalize(NotNull{arena}, builtinTypes, constraint->scope, c.sourceType);
|
||||
std::optional<TypeId> generalizedTy = generalize(NotNull{arena}, builtinTypes, constraint->scope, generalizedTypes, c.sourceType);
|
||||
if (generalizedTy)
|
||||
generalized = QuantifierResult{*generalizedTy}; // FIXME insertedGenerics and insertedGenericPacks
|
||||
else
|
||||
@ -597,7 +677,7 @@ bool ConstraintSolver::tryDispatch(const GeneralizationConstraint& c, NotNull<co
|
||||
if (generalized)
|
||||
{
|
||||
if (get<BlockedType>(generalizedType))
|
||||
bindBlockedType(generalizedType, generalized->result, c.sourceType, constraint);
|
||||
bind(constraint, generalizedType, generalized->result);
|
||||
else
|
||||
unify(constraint, generalizedType, generalized->result);
|
||||
|
||||
@ -610,17 +690,11 @@ bool ConstraintSolver::tryDispatch(const GeneralizationConstraint& c, NotNull<co
|
||||
else
|
||||
{
|
||||
reportError(CodeTooComplex{}, constraint->location);
|
||||
emplaceType<BoundType>(asMutable(c.generalizedType), builtinTypes->errorType);
|
||||
bind(constraint, c.generalizedType, builtinTypes->errorRecoveryType());
|
||||
}
|
||||
|
||||
unblock(c.generalizedType, constraint->location);
|
||||
unblock(c.sourceType, constraint->location);
|
||||
|
||||
for (TypeId ty : c.interiorTypes)
|
||||
{
|
||||
generalize(NotNull{arena}, builtinTypes, constraint->scope, ty);
|
||||
unblock(ty, constraint->location);
|
||||
}
|
||||
generalize(NotNull{arena}, builtinTypes, constraint->scope, generalizedTypes, ty);
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -710,18 +784,18 @@ bool ConstraintSolver::tryDispatch(const IterableConstraint& c, NotNull<const Co
|
||||
|
||||
if (it != endIt)
|
||||
{
|
||||
bindBlockedType(*it, keyTy, keyTy, constraint);
|
||||
bind(constraint, *it, keyTy);
|
||||
++it;
|
||||
}
|
||||
if (it != endIt)
|
||||
{
|
||||
bindBlockedType(*it, valueTy, valueTy, constraint);
|
||||
bind(constraint, *it, valueTy);
|
||||
++it;
|
||||
}
|
||||
|
||||
while (it != endIt)
|
||||
{
|
||||
bindBlockedType(*it, builtinTypes->nilType, builtinTypes->nilType, constraint);
|
||||
bind(constraint, *it, builtinTypes->nilType);
|
||||
++it;
|
||||
}
|
||||
|
||||
@ -813,15 +887,14 @@ bool ConstraintSolver::tryDispatch(const TypeAliasExpansionConstraint& c, NotNul
|
||||
const PendingExpansionType* petv = get<PendingExpansionType>(follow(c.target));
|
||||
if (!petv)
|
||||
{
|
||||
unblock(c.target, constraint->location);
|
||||
unblock(c.target, constraint->location); // TODO: do we need this? any re-entrancy?
|
||||
return true;
|
||||
}
|
||||
|
||||
auto bindResult = [this, &c, constraint](TypeId result) {
|
||||
LUAU_ASSERT(get<PendingExpansionType>(c.target));
|
||||
shiftReferences(c.target, result);
|
||||
emplaceType<BoundType>(asMutable(c.target), result);
|
||||
unblock(c.target, constraint->location);
|
||||
bind(constraint, c.target, result);
|
||||
};
|
||||
|
||||
std::optional<TypeFun> tf = (petv->prefix) ? constraint->scope->lookupImportedType(petv->prefix->value, petv->name.value)
|
||||
@ -1009,19 +1082,23 @@ bool ConstraintSolver::tryDispatch(const FunctionCallConstraint& c, NotNull<cons
|
||||
return block(c.fn, constraint);
|
||||
}
|
||||
|
||||
if (get<AnyType>(fn))
|
||||
{
|
||||
emplaceTypePack<BoundTypePack>(asMutable(c.result), builtinTypes->anyTypePack);
|
||||
unblock(c.result, constraint->location);
|
||||
return true;
|
||||
}
|
||||
|
||||
// if we're calling an error type, the result is an error type, and that's that.
|
||||
if (get<ErrorType>(fn))
|
||||
{
|
||||
emplaceTypePack<BoundTypePack>(asMutable(c.result), builtinTypes->errorTypePack);
|
||||
unblock(c.result, constraint->location);
|
||||
|
||||
bind(constraint, c.result, builtinTypes->errorRecoveryTypePack());
|
||||
return true;
|
||||
}
|
||||
|
||||
if (get<NeverType>(fn))
|
||||
{
|
||||
emplaceTypePack<BoundTypePack>(asMutable(c.result), builtinTypes->neverTypePack);
|
||||
unblock(c.result, constraint->location);
|
||||
bind(constraint, c.result, builtinTypes->neverTypePack);
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -1078,7 +1155,7 @@ bool ConstraintSolver::tryDispatch(const FunctionCallConstraint& c, NotNull<cons
|
||||
|
||||
argsPack = arena->addTypePack(TypePack{std::move(argsHead), argsTail});
|
||||
fn = follow(*callMm);
|
||||
emplaceTypePack<FreeTypePack>(asMutable(c.result), constraint->scope);
|
||||
emplace<FreeTypePack>(constraint, c.result, constraint->scope);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1095,14 +1172,21 @@ bool ConstraintSolver::tryDispatch(const FunctionCallConstraint& c, NotNull<cons
|
||||
}
|
||||
|
||||
if (!usedMagic)
|
||||
emplaceTypePack<FreeTypePack>(asMutable(c.result), constraint->scope);
|
||||
emplace<FreeTypePack>(constraint, c.result, constraint->scope);
|
||||
}
|
||||
|
||||
for (std::optional<TypeId> ty : c.discriminantTypes)
|
||||
{
|
||||
if (!ty || !isBlocked(*ty))
|
||||
if (!ty)
|
||||
continue;
|
||||
|
||||
// If the discriminant type has been transmuted, we need to unblock them.
|
||||
if (!isBlocked(*ty))
|
||||
{
|
||||
unblock(*ty, constraint->location);
|
||||
continue;
|
||||
}
|
||||
|
||||
// We use `any` here because the discriminant type may be pointed at by both branches,
|
||||
// where the discriminant type is not negated, and the other where it is negated, i.e.
|
||||
// `unknown ~ unknown` and `~unknown ~ never`, so `T & unknown ~ T` and `T & ~unknown ~ never`
|
||||
@ -1110,7 +1194,7 @@ bool ConstraintSolver::tryDispatch(const FunctionCallConstraint& c, NotNull<cons
|
||||
// `any ~ any` and `~any ~ any`, so `T & any ~ T` and `T & ~any ~ T`
|
||||
//
|
||||
// In practice, users cannot negate `any`, so this is an implementation detail we can always change.
|
||||
*asMutable(follow(*ty)) = BoundType{builtinTypes->anyType};
|
||||
emplaceType<BoundType>(asMutable(follow(*ty)), builtinTypes->anyType);
|
||||
}
|
||||
|
||||
OverloadResolver resolver{
|
||||
@ -1120,7 +1204,6 @@ bool ConstraintSolver::tryDispatch(const FunctionCallConstraint& c, NotNull<cons
|
||||
if (status == OverloadResolver::Analysis::Ok)
|
||||
overloadToUse = overload;
|
||||
|
||||
|
||||
TypeId inferredTy = arena->addType(FunctionType{TypeLevel{}, constraint->scope.get(), argsPack, c.result});
|
||||
Unifier2 u2{NotNull{arena}, builtinTypes, constraint->scope, NotNull{&iceReporter}};
|
||||
|
||||
@ -1150,12 +1233,12 @@ bool ConstraintSolver::tryDispatch(const FunctionCallConstraint& c, NotNull<cons
|
||||
if (occursCheckPassed && c.callSite)
|
||||
(*c.astOverloadResolvedTypes)[c.callSite] = inferredTy;
|
||||
|
||||
unblock(c.result, constraint->location);
|
||||
|
||||
InstantiationQueuer queuer{constraint->scope, constraint->location, this};
|
||||
queuer.traverse(overloadToUse);
|
||||
queuer.traverse(inferredTy);
|
||||
|
||||
unblock(c.result, constraint->location);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -1250,7 +1333,7 @@ bool ConstraintSolver::tryDispatch(const FunctionCheckConstraint& c, NotNull<con
|
||||
if (!lambdaExpr->args.data[j]->annotation && get<FreeType>(follow(lambdaArgTys[j])))
|
||||
{
|
||||
shiftReferences(lambdaArgTys[j], expectedLambdaArgTys[j]);
|
||||
emplaceType<BoundType>(asMutable(lambdaArgTys[j]), expectedLambdaArgTys[j]);
|
||||
bind(constraint, lambdaArgTys[j], expectedLambdaArgTys[j]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1303,7 +1386,7 @@ bool ConstraintSolver::tryDispatch(const PrimitiveTypeConstraint& c, NotNull<con
|
||||
bindTo = freeType->lowerBound;
|
||||
|
||||
shiftReferences(c.freeType, bindTo);
|
||||
emplaceType<BoundType>(asMutable(c.freeType), bindTo);
|
||||
bind(constraint, c.freeType, bindTo);
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -1336,8 +1419,7 @@ bool ConstraintSolver::tryDispatch(const HasPropConstraint& c, NotNull<const Con
|
||||
return false;
|
||||
}
|
||||
|
||||
bindBlockedType(resultType, result.value_or(builtinTypes->anyType), c.subjectType, constraint);
|
||||
unblock(resultType, constraint->location);
|
||||
bind(constraint, resultType, result.value_or(builtinTypes->anyType));
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -1361,12 +1443,12 @@ bool ConstraintSolver::tryDispatchHasIndexer(
|
||||
if (auto tbl = get<TableType>(follow(ft->upperBound)); tbl && tbl->indexer)
|
||||
{
|
||||
unify(constraint, indexType, tbl->indexer->indexType);
|
||||
bindBlockedType(resultType, tbl->indexer->indexResultType, subjectType, constraint);
|
||||
bind(constraint, resultType, tbl->indexer->indexResultType);
|
||||
return true;
|
||||
}
|
||||
|
||||
FreeType freeResult{ft->scope, builtinTypes->neverType, builtinTypes->unknownType};
|
||||
emplaceType<FreeType>(asMutable(resultType), freeResult);
|
||||
emplace<FreeType>(constraint, resultType, freeResult);
|
||||
|
||||
TypeId upperBound = arena->addType(TableType{/* props */ {}, TableIndexer{indexType, resultType}, TypeLevel{}, TableState::Unsealed});
|
||||
|
||||
@ -1380,7 +1462,7 @@ bool ConstraintSolver::tryDispatchHasIndexer(
|
||||
{
|
||||
unify(constraint, indexType, indexer->indexType);
|
||||
|
||||
bindBlockedType(resultType, indexer->indexResultType, subjectType, constraint);
|
||||
bind(constraint, resultType, indexer->indexResultType);
|
||||
return true;
|
||||
}
|
||||
else if (tt->state == TableState::Unsealed)
|
||||
@ -1388,7 +1470,7 @@ bool ConstraintSolver::tryDispatchHasIndexer(
|
||||
// FIXME this is greedy.
|
||||
|
||||
FreeType freeResult{tt->scope, builtinTypes->neverType, builtinTypes->unknownType};
|
||||
emplaceType<FreeType>(asMutable(resultType), freeResult);
|
||||
emplace<FreeType>(constraint, resultType, freeResult);
|
||||
|
||||
tt->indexer = TableIndexer{indexType, resultType};
|
||||
return true;
|
||||
@ -1401,12 +1483,12 @@ bool ConstraintSolver::tryDispatchHasIndexer(
|
||||
if (auto indexer = ct->indexer)
|
||||
{
|
||||
unify(constraint, indexType, indexer->indexType);
|
||||
bindBlockedType(resultType, indexer->indexResultType, subjectType, constraint);
|
||||
bind(constraint, resultType, indexer->indexResultType);
|
||||
return true;
|
||||
}
|
||||
else if (isString(indexType))
|
||||
{
|
||||
bindBlockedType(resultType, builtinTypes->unknownType, subjectType, constraint);
|
||||
bind(constraint, resultType, builtinTypes->unknownType);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -1441,11 +1523,11 @@ bool ConstraintSolver::tryDispatchHasIndexer(
|
||||
}
|
||||
|
||||
if (0 == results.size())
|
||||
bindBlockedType(resultType, builtinTypes->errorType, subjectType, constraint);
|
||||
bind(constraint, resultType, builtinTypes->errorType);
|
||||
else if (1 == results.size())
|
||||
bindBlockedType(resultType, *results.begin(), subjectType, constraint);
|
||||
bind(constraint, resultType, *results.begin());
|
||||
else
|
||||
emplaceType<IntersectionType>(asMutable(resultType), std::vector(results.begin(), results.end()));
|
||||
emplace<IntersectionType>(constraint, resultType, std::vector(results.begin(), results.end()));
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -1473,20 +1555,20 @@ bool ConstraintSolver::tryDispatchHasIndexer(
|
||||
}
|
||||
|
||||
if (0 == results.size())
|
||||
emplaceType<BoundType>(asMutable(resultType), builtinTypes->errorType);
|
||||
bind(constraint, resultType, builtinTypes->errorType);
|
||||
else if (1 == results.size())
|
||||
{
|
||||
TypeId firstResult = *results.begin();
|
||||
shiftReferences(resultType, firstResult);
|
||||
emplaceType<BoundType>(asMutable(resultType), firstResult);
|
||||
bind(constraint, resultType, firstResult);
|
||||
}
|
||||
else
|
||||
emplaceType<UnionType>(asMutable(resultType), std::vector(results.begin(), results.end()));
|
||||
emplace<UnionType>(constraint, resultType, std::vector(results.begin(), results.end()));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bindBlockedType(resultType, builtinTypes->errorType, subjectType, constraint);
|
||||
bind(constraint, resultType, builtinTypes->errorType);
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -1534,86 +1616,7 @@ bool ConstraintSolver::tryDispatch(const HasIndexerConstraint& c, NotNull<const
|
||||
|
||||
Set<TypeId> seen{nullptr};
|
||||
|
||||
bool ok = tryDispatchHasIndexer(recursionDepth, constraint, subjectType, indexType, c.resultType, seen);
|
||||
if (ok)
|
||||
unblock(c.resultType, constraint->location);
|
||||
return ok;
|
||||
}
|
||||
|
||||
std::pair<bool, std::optional<TypeId>> ConstraintSolver::tryDispatchSetIndexer(
|
||||
NotNull<const Constraint> constraint, TypeId subjectType, TypeId indexType, TypeId propType, bool expandFreeTypeBounds)
|
||||
{
|
||||
if (isBlocked(subjectType))
|
||||
return {block(subjectType, constraint), std::nullopt};
|
||||
|
||||
if (auto tt = getMutable<TableType>(subjectType))
|
||||
{
|
||||
if (tt->indexer)
|
||||
{
|
||||
if (isBlocked(tt->indexer->indexResultType))
|
||||
return {block(tt->indexer->indexResultType, constraint), std::nullopt};
|
||||
|
||||
unify(constraint, indexType, tt->indexer->indexType);
|
||||
return {true, tt->indexer->indexResultType};
|
||||
}
|
||||
else if (tt->state == TableState::Free || tt->state == TableState::Unsealed)
|
||||
{
|
||||
TypeId resultTy = freshType(arena, builtinTypes, constraint->scope.get());
|
||||
tt->indexer = TableIndexer{indexType, resultTy};
|
||||
return {true, resultTy};
|
||||
}
|
||||
}
|
||||
else if (auto ft = getMutable<FreeType>(subjectType); ft && expandFreeTypeBounds)
|
||||
{
|
||||
// Setting an indexer on some fresh type means we use that fresh type in a negative position.
|
||||
// Therefore, we only care about the upper bound.
|
||||
//
|
||||
// We'll extend the upper bound if we could dispatch, but could not find a table type to update the indexer.
|
||||
auto [dispatched, resultTy] = tryDispatchSetIndexer(constraint, ft->upperBound, indexType, propType, /*expandFreeTypeBounds=*/false);
|
||||
if (dispatched && !resultTy)
|
||||
{
|
||||
// Despite that we haven't found a table type, adding a table type causes us to have one that we can /now/ find.
|
||||
resultTy = freshType(arena, builtinTypes, constraint->scope.get());
|
||||
|
||||
TypeId tableTy = arena->addType(TableType{TableState::Sealed, TypeLevel{}, constraint->scope.get()});
|
||||
TableType* tt2 = getMutable<TableType>(tableTy);
|
||||
tt2->indexer = TableIndexer{indexType, *resultTy};
|
||||
|
||||
ft->upperBound =
|
||||
simplifyIntersection(builtinTypes, arena, ft->upperBound, tableTy).result; // TODO: intersect type family or a constraint.
|
||||
}
|
||||
|
||||
return {dispatched, resultTy};
|
||||
}
|
||||
else if (auto it = get<IntersectionType>(subjectType))
|
||||
{
|
||||
bool dispatched = true;
|
||||
std::vector<TypeId> results;
|
||||
|
||||
for (TypeId part : it)
|
||||
{
|
||||
auto [dispatched2, found] = tryDispatchSetIndexer(constraint, part, indexType, propType, expandFreeTypeBounds);
|
||||
dispatched &= dispatched2;
|
||||
results.push_back(found.value_or(builtinTypes->errorRecoveryType()));
|
||||
|
||||
if (!dispatched)
|
||||
return {dispatched, std::nullopt};
|
||||
}
|
||||
|
||||
TypeId resultTy = arena->addType(TypeFamilyInstanceType{
|
||||
NotNull{&kBuiltinTypeFamilies.unionFamily},
|
||||
std::move(results),
|
||||
{},
|
||||
});
|
||||
|
||||
pushConstraint(constraint->scope, constraint->location, ReduceConstraint{resultTy});
|
||||
|
||||
return {dispatched, resultTy};
|
||||
}
|
||||
else if (is<AnyType, ErrorType, NeverType>(subjectType))
|
||||
return {true, subjectType};
|
||||
|
||||
return {true, std::nullopt};
|
||||
return tryDispatchHasIndexer(recursionDepth, constraint, subjectType, indexType, c.resultType, seen);
|
||||
}
|
||||
|
||||
bool ConstraintSolver::tryDispatch(const AssignPropConstraint& c, NotNull<const Constraint> constraint)
|
||||
@ -1643,7 +1646,7 @@ bool ConstraintSolver::tryDispatch(const AssignPropConstraint& c, NotNull<const
|
||||
if (!prop || !prop->writeTy.has_value())
|
||||
return true;
|
||||
|
||||
emplaceType<BoundType>(asMutable(c.propType), *prop->writeTy);
|
||||
bind(constraint, c.propType, *prop->writeTy);
|
||||
unify(constraint, rhsType, *prop->writeTy);
|
||||
return true;
|
||||
}
|
||||
@ -1663,7 +1666,7 @@ bool ConstraintSolver::tryDispatch(const AssignPropConstraint& c, NotNull<const
|
||||
// Food for thought: Could we block if simplification encounters a blocked type?
|
||||
lhsFree->upperBound = simplifyIntersection(builtinTypes, arena, lhsFree->upperBound, newUpperBound).result;
|
||||
|
||||
emplaceType<BoundType>(asMutable(c.propType), rhsType);
|
||||
bind(constraint, c.propType, rhsType);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -1681,7 +1684,7 @@ bool ConstraintSolver::tryDispatch(const AssignPropConstraint& c, NotNull<const
|
||||
if (maybeTy)
|
||||
{
|
||||
const TypeId propTy = *maybeTy;
|
||||
emplaceType<BoundType>(asMutable(c.propType), propTy);
|
||||
bind(constraint, c.propType, propTy);
|
||||
unify(constraint, rhsType, propTy);
|
||||
return true;
|
||||
}
|
||||
@ -1700,7 +1703,7 @@ bool ConstraintSolver::tryDispatch(const AssignPropConstraint& c, NotNull<const
|
||||
|
||||
if (prop.writeTy.has_value())
|
||||
{
|
||||
emplaceType<BoundType>(asMutable(c.propType), *prop.writeTy);
|
||||
bind(constraint, c.propType, *prop.writeTy);
|
||||
unify(constraint, rhsType, *prop.writeTy);
|
||||
return true;
|
||||
}
|
||||
@ -1710,13 +1713,13 @@ bool ConstraintSolver::tryDispatch(const AssignPropConstraint& c, NotNull<const
|
||||
if (lhsTable->state == TableState::Unsealed || lhsTable->state == TableState::Free)
|
||||
{
|
||||
prop.writeTy = prop.readTy;
|
||||
emplaceType<BoundType>(asMutable(c.propType), *prop.writeTy);
|
||||
bind(constraint, c.propType, *prop.writeTy);
|
||||
unify(constraint, rhsType, *prop.writeTy);
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
emplaceType<BoundType>(asMutable(c.propType), builtinTypes->errorType);
|
||||
bind(constraint, c.propType, builtinTypes->errorType);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -1724,28 +1727,27 @@ bool ConstraintSolver::tryDispatch(const AssignPropConstraint& c, NotNull<const
|
||||
|
||||
if (lhsTable->indexer && maybeString(lhsTable->indexer->indexType))
|
||||
{
|
||||
emplaceType<BoundType>(asMutable(c.propType), rhsType);
|
||||
bind(constraint, c.propType, rhsType);
|
||||
unify(constraint, rhsType, lhsTable->indexer->indexResultType);
|
||||
return true;
|
||||
}
|
||||
|
||||
if (lhsTable->state == TableState::Unsealed || lhsTable->state == TableState::Free)
|
||||
{
|
||||
emplaceType<BoundType>(asMutable(c.propType), rhsType);
|
||||
bind(constraint, c.propType, rhsType);
|
||||
lhsTable->props[propName] = Property::rw(rhsType);
|
||||
|
||||
if (lhsTable->state == TableState::Unsealed && c.decrementPropCount)
|
||||
{
|
||||
LUAU_ASSERT(lhsTable->remainingProps > 0);
|
||||
lhsTable->remainingProps -= 1;
|
||||
unblock(lhsType, constraint->location);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
emplaceType<BoundType>(asMutable(c.propType), builtinTypes->errorType);
|
||||
bind(constraint, c.propType, builtinTypes->errorType);
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -1772,14 +1774,14 @@ bool ConstraintSolver::tryDispatch(const AssignIndexConstraint& c, NotNull<const
|
||||
{
|
||||
unify(constraint, indexType, lhsTable->indexer->indexType);
|
||||
unify(constraint, rhsType, lhsTable->indexer->indexResultType);
|
||||
emplaceType<BoundType>(asMutable(c.propType), lhsTable->indexer->indexResultType);
|
||||
bind(constraint, c.propType, lhsTable->indexer->indexResultType);
|
||||
return true;
|
||||
}
|
||||
|
||||
if (lhsTable->state == TableState::Unsealed || lhsTable->state == TableState::Free)
|
||||
{
|
||||
lhsTable->indexer = TableIndexer{indexType, rhsType};
|
||||
emplaceType<BoundType>(asMutable(c.propType), rhsType);
|
||||
bind(constraint, c.propType, rhsType);
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -1802,7 +1804,7 @@ bool ConstraintSolver::tryDispatch(const AssignIndexConstraint& c, NotNull<const
|
||||
unify(constraint, lhsType, newUpperBound);
|
||||
|
||||
LUAU_ASSERT(newTable->indexer);
|
||||
emplaceType<BoundType>(asMutable(c.propType), newTable->indexer->indexResultType);
|
||||
bind(constraint, c.propType, newTable->indexer->indexResultType);
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -1821,7 +1823,7 @@ bool ConstraintSolver::tryDispatch(const AssignIndexConstraint& c, NotNull<const
|
||||
{
|
||||
unify(constraint, indexType, lhsClass->indexer->indexType);
|
||||
unify(constraint, rhsType, lhsClass->indexer->indexResultType);
|
||||
emplaceType<BoundType>(asMutable(c.propType), lhsClass->indexer->indexResultType);
|
||||
bind(constraint, c.propType, lhsClass->indexer->indexResultType);
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -1878,40 +1880,11 @@ bool ConstraintSolver::tryDispatch(const AssignIndexConstraint& c, NotNull<const
|
||||
}
|
||||
|
||||
// Other types do not support index assignment.
|
||||
emplaceType<BoundType>(asMutable(c.propType), builtinTypes->errorType);
|
||||
bind(constraint, c.propType, builtinTypes->errorType);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool ConstraintSolver::tryDispatchUnpack1(NotNull<const Constraint> constraint, TypeId resultTy, TypeId srcTy)
|
||||
{
|
||||
resultTy = follow(resultTy);
|
||||
LUAU_ASSERT(canMutate(resultTy, constraint));
|
||||
|
||||
LUAU_ASSERT(get<BlockedType>(resultTy));
|
||||
|
||||
if (get<BlockedType>(resultTy))
|
||||
{
|
||||
if (follow(srcTy) == resultTy)
|
||||
{
|
||||
// It is sometimes the case that we find that a blocked type
|
||||
// is only blocked on itself. This doesn't actually
|
||||
// constitute any meaningful constraint, so we replace it
|
||||
// with a free type.
|
||||
TypeId f = freshType(arena, builtinTypes, constraint->scope);
|
||||
shiftReferences(resultTy, f);
|
||||
emplaceType<BoundType>(asMutable(resultTy), f);
|
||||
}
|
||||
else
|
||||
bindBlockedType(resultTy, srcTy, srcTy, constraint);
|
||||
}
|
||||
else
|
||||
unify(constraint, srcTy, resultTy);
|
||||
|
||||
unblock(resultTy, constraint->location);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool ConstraintSolver::tryDispatch(const UnpackConstraint& c, NotNull<const Constraint> constraint)
|
||||
{
|
||||
TypePackId sourcePack = follow(c.sourcePack);
|
||||
@ -1932,7 +1905,29 @@ bool ConstraintSolver::tryDispatch(const UnpackConstraint& c, NotNull<const Cons
|
||||
|
||||
TypeId srcTy = follow(srcPack.head[i]);
|
||||
TypeId resultTy = follow(*resultIter);
|
||||
tryDispatchUnpack1(constraint, resultTy, srcTy);
|
||||
|
||||
LUAU_ASSERT(get<BlockedType>(resultTy));
|
||||
LUAU_ASSERT(canMutate(resultTy, constraint));
|
||||
|
||||
if (get<BlockedType>(resultTy))
|
||||
{
|
||||
if (follow(srcTy) == resultTy)
|
||||
{
|
||||
// It is sometimes the case that we find that a blocked type
|
||||
// is only blocked on itself. This doesn't actually
|
||||
// constitute any meaningful constraint, so we replace it
|
||||
// with a free type.
|
||||
TypeId f = freshType(arena, builtinTypes, constraint->scope);
|
||||
shiftReferences(resultTy, f);
|
||||
emplaceType<BoundType>(asMutable(resultTy), f);
|
||||
}
|
||||
else
|
||||
bind(constraint, resultTy, srcTy);
|
||||
}
|
||||
else
|
||||
unify(constraint, srcTy, resultTy);
|
||||
|
||||
unblock(resultTy, constraint->location);
|
||||
|
||||
++resultIter;
|
||||
++i;
|
||||
@ -1948,8 +1943,7 @@ bool ConstraintSolver::tryDispatch(const UnpackConstraint& c, NotNull<const Cons
|
||||
LUAU_ASSERT(canMutate(resultTy, constraint));
|
||||
if (get<BlockedType>(resultTy) || get<PendingExpansionType>(resultTy))
|
||||
{
|
||||
emplaceType<BoundType>(asMutable(resultTy), builtinTypes->nilType);
|
||||
unblock(resultTy, constraint->location);
|
||||
bind(constraint, resultTy, builtinTypes->nilType);
|
||||
}
|
||||
|
||||
++resultIter;
|
||||
@ -1972,6 +1966,11 @@ bool ConstraintSolver::tryDispatch(const ReduceConstraint& c, NotNull<const Cons
|
||||
|
||||
bool reductionFinished = result.blockedTypes.empty() && result.blockedPacks.empty();
|
||||
|
||||
ty = follow(ty);
|
||||
// If we couldn't reduce this type family, stick it in the set!
|
||||
if (get<TypeFamilyInstanceType>(ty))
|
||||
typeFamiliesToFinalize[ty] = constraint;
|
||||
|
||||
if (force || reductionFinished)
|
||||
{
|
||||
// if we're completely dispatching this constraint, we want to record any uninhabited type families to unblock.
|
||||
@ -2058,11 +2057,11 @@ bool ConstraintSolver::tryDispatchIterableTable(TypeId iteratorTy, const Iterabl
|
||||
auto endIt = end(c.variables);
|
||||
if (it != endIt)
|
||||
{
|
||||
bindBlockedType(*it, keyTy, keyTy, constraint);
|
||||
bind(constraint, *it, keyTy);
|
||||
++it;
|
||||
}
|
||||
if (it != endIt)
|
||||
bindBlockedType(*it, valueTy, valueTy, constraint);
|
||||
bind(constraint, *it, valueTy);
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -2072,7 +2071,7 @@ bool ConstraintSolver::tryDispatchIterableTable(TypeId iteratorTy, const Iterabl
|
||||
{
|
||||
LUAU_ASSERT(get<BlockedType>(varTy));
|
||||
LUAU_ASSERT(varTy != ty);
|
||||
bindBlockedType(varTy, ty, ty, constraint);
|
||||
bind(constraint, varTy, ty);
|
||||
}
|
||||
};
|
||||
|
||||
@ -2121,8 +2120,7 @@ bool ConstraintSolver::tryDispatchIterableTable(TypeId iteratorTy, const Iterabl
|
||||
|
||||
unify(constraint, c.variables[i], expectedVariables[i]);
|
||||
|
||||
bindBlockedType(c.variables[i], expectedVariables[i], expectedVariables[i], constraint);
|
||||
unblock(c.variables[i], constraint->location);
|
||||
bind(constraint, c.variables[i], expectedVariables[i]);
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -2517,42 +2515,9 @@ bool ConstraintSolver::unify(NotNull<const Constraint> constraint, TID subTy, TI
|
||||
return false;
|
||||
}
|
||||
|
||||
unblock(subTy, constraint->location);
|
||||
unblock(superTy, constraint->location);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void ConstraintSolver::bindBlockedType(TypeId blockedTy, TypeId resultTy, TypeId rootTy, NotNull<const Constraint> constraint)
|
||||
{
|
||||
resultTy = follow(resultTy);
|
||||
|
||||
LUAU_ASSERT(get<BlockedType>(blockedTy) && canMutate(blockedTy, constraint));
|
||||
|
||||
if (blockedTy == resultTy)
|
||||
{
|
||||
rootTy = follow(rootTy);
|
||||
Scope* freeScope = nullptr;
|
||||
if (auto ft = get<FreeType>(rootTy))
|
||||
freeScope = ft->scope;
|
||||
else if (auto tt = get<TableType>(rootTy); tt && tt->state == TableState::Free)
|
||||
freeScope = tt->scope;
|
||||
else
|
||||
iceReporter.ice("bindBlockedType couldn't find an appropriate scope for a fresh type!", constraint->location);
|
||||
|
||||
LUAU_ASSERT(freeScope);
|
||||
|
||||
TypeId freeType = arena->freshType(freeScope);
|
||||
shiftReferences(blockedTy, freeType);
|
||||
emplaceType<BoundType>(asMutable(blockedTy), freeType);
|
||||
}
|
||||
else
|
||||
{
|
||||
shiftReferences(blockedTy, resultTy);
|
||||
emplaceType<BoundType>(asMutable(blockedTy), resultTy);
|
||||
}
|
||||
}
|
||||
|
||||
bool ConstraintSolver::block_(BlockedConstraintId target, NotNull<const Constraint> constraint)
|
||||
{
|
||||
// If a set is not present for the target, construct a new DenseHashSet for it,
|
||||
@ -2884,7 +2849,7 @@ std::optional<TypeId> ConstraintSolver::generalizeFreeType(NotNull<Scope> scope,
|
||||
// that until all constraint generation is complete.
|
||||
}
|
||||
|
||||
return generalize(NotNull{arena}, builtinTypes, scope, type);
|
||||
return generalize(NotNull{arena}, builtinTypes, scope, generalizedTypes, type);
|
||||
}
|
||||
|
||||
bool ConstraintSolver::hasUnresolvedConstraints(TypeId ty)
|
||||
|
@ -7,6 +7,7 @@
|
||||
#include "Luau/NotNull.h"
|
||||
#include "Luau/StringUtils.h"
|
||||
#include "Luau/ToString.h"
|
||||
#include "Luau/Type.h"
|
||||
#include "Luau/TypeFamily.h"
|
||||
|
||||
#include <optional>
|
||||
@ -666,6 +667,18 @@ struct ErrorConverter
|
||||
return "Type family instance " + Luau::toString(e.ty) + " is ill-formed, and thus invalid";
|
||||
}
|
||||
|
||||
if ("index" == tfit->family->name)
|
||||
{
|
||||
if (tfit->typeArguments.size() != 2)
|
||||
return "Type family instance " + Luau::toString(e.ty) + " is ill-formed, and thus invalid";
|
||||
|
||||
if (auto errType = get<ErrorType>(tfit->typeArguments[1])) // Second argument to index<_,_> is not a type
|
||||
return "Second argument to index<" + Luau::toString(tfit->typeArguments[0]) + ", _> is not a valid index type";
|
||||
else // Second argument to index<_,_> is not a property of the first argument
|
||||
return "Property '" + Luau::toString(tfit->typeArguments[1]) + "' does not exist on type '" + Luau::toString(tfit->typeArguments[0]) +
|
||||
"'";
|
||||
}
|
||||
|
||||
if (kUnreachableTypeFamilies.count(tfit->family->name))
|
||||
{
|
||||
return "Type family instance " + Luau::toString(e.ty) + " is uninhabited\n" +
|
||||
|
@ -1003,6 +1003,7 @@ void Frontend::checkBuildQueueItem(BuildQueueItem& item)
|
||||
module->astForInNextTypes.clear();
|
||||
module->astResolvedTypes.clear();
|
||||
module->astResolvedTypePacks.clear();
|
||||
module->astCompoundAssignResultTypes.clear();
|
||||
module->astScopes.clear();
|
||||
module->upperBoundContributors.clear();
|
||||
|
||||
|
@ -4,6 +4,7 @@
|
||||
|
||||
#include "Luau/Scope.h"
|
||||
#include "Luau/Type.h"
|
||||
#include "Luau/ToString.h"
|
||||
#include "Luau/TypeArena.h"
|
||||
#include "Luau/TypePack.h"
|
||||
#include "Luau/VisitType.h"
|
||||
@ -16,6 +17,7 @@ struct MutatingGeneralizer : TypeOnceVisitor
|
||||
NotNull<BuiltinTypes> builtinTypes;
|
||||
|
||||
NotNull<Scope> scope;
|
||||
NotNull<DenseHashSet<TypeId>> cachedTypes;
|
||||
DenseHashMap<const void*, size_t> positiveTypes;
|
||||
DenseHashMap<const void*, size_t> negativeTypes;
|
||||
std::vector<TypeId> generics;
|
||||
@ -23,11 +25,12 @@ struct MutatingGeneralizer : TypeOnceVisitor
|
||||
|
||||
bool isWithinFunction = false;
|
||||
|
||||
MutatingGeneralizer(NotNull<BuiltinTypes> builtinTypes, NotNull<Scope> scope, DenseHashMap<const void*, size_t> positiveTypes,
|
||||
MutatingGeneralizer(NotNull<BuiltinTypes> builtinTypes, NotNull<Scope> scope, NotNull<DenseHashSet<TypeId>> cachedTypes, DenseHashMap<const void*, size_t> positiveTypes,
|
||||
DenseHashMap<const void*, size_t> negativeTypes)
|
||||
: TypeOnceVisitor(/* skipBoundTypes */ true)
|
||||
, builtinTypes(builtinTypes)
|
||||
, scope(scope)
|
||||
, cachedTypes(cachedTypes)
|
||||
, positiveTypes(std::move(positiveTypes))
|
||||
, negativeTypes(std::move(negativeTypes))
|
||||
{
|
||||
@ -130,6 +133,9 @@ struct MutatingGeneralizer : TypeOnceVisitor
|
||||
|
||||
bool visit(TypeId ty, const FunctionType& ft) override
|
||||
{
|
||||
if (cachedTypes->contains(ty))
|
||||
return false;
|
||||
|
||||
const bool oldValue = isWithinFunction;
|
||||
|
||||
isWithinFunction = true;
|
||||
@ -144,6 +150,8 @@ struct MutatingGeneralizer : TypeOnceVisitor
|
||||
|
||||
bool visit(TypeId ty, const FreeType&) override
|
||||
{
|
||||
LUAU_ASSERT(!cachedTypes->contains(ty));
|
||||
|
||||
const FreeType* ft = get<FreeType>(ty);
|
||||
LUAU_ASSERT(ft);
|
||||
|
||||
@ -244,6 +252,9 @@ struct MutatingGeneralizer : TypeOnceVisitor
|
||||
|
||||
bool visit(TypeId ty, const TableType&) override
|
||||
{
|
||||
if (cachedTypes->contains(ty))
|
||||
return false;
|
||||
|
||||
const size_t positiveCount = getCount(positiveTypes, ty);
|
||||
const size_t negativeCount = getCount(negativeTypes, ty);
|
||||
|
||||
@ -287,10 +298,12 @@ struct MutatingGeneralizer : TypeOnceVisitor
|
||||
struct FreeTypeSearcher : TypeVisitor
|
||||
{
|
||||
NotNull<Scope> scope;
|
||||
NotNull<DenseHashSet<TypeId>> cachedTypes;
|
||||
|
||||
explicit FreeTypeSearcher(NotNull<Scope> scope)
|
||||
explicit FreeTypeSearcher(NotNull<Scope> scope, NotNull<DenseHashSet<TypeId>> cachedTypes)
|
||||
: TypeVisitor(/*skipBoundTypes*/ true)
|
||||
, scope(scope)
|
||||
, cachedTypes(cachedTypes)
|
||||
{
|
||||
}
|
||||
|
||||
@ -363,7 +376,7 @@ struct FreeTypeSearcher : TypeVisitor
|
||||
|
||||
bool visit(TypeId ty) override
|
||||
{
|
||||
if (seenWithPolarity(ty))
|
||||
if (cachedTypes->contains(ty) || seenWithPolarity(ty))
|
||||
return false;
|
||||
|
||||
LUAU_ASSERT(ty);
|
||||
@ -372,7 +385,7 @@ struct FreeTypeSearcher : TypeVisitor
|
||||
|
||||
bool visit(TypeId ty, const FreeType& ft) override
|
||||
{
|
||||
if (seenWithPolarity(ty))
|
||||
if (cachedTypes->contains(ty) || seenWithPolarity(ty))
|
||||
return false;
|
||||
|
||||
if (!subsumes(scope, ft.scope))
|
||||
@ -397,7 +410,7 @@ struct FreeTypeSearcher : TypeVisitor
|
||||
|
||||
bool visit(TypeId ty, const TableType& tt) override
|
||||
{
|
||||
if (seenWithPolarity(ty))
|
||||
if (cachedTypes->contains(ty) || seenWithPolarity(ty))
|
||||
return false;
|
||||
|
||||
if ((tt.state == TableState::Free || tt.state == TableState::Unsealed) && subsumes(scope, tt.scope))
|
||||
@ -443,7 +456,7 @@ struct FreeTypeSearcher : TypeVisitor
|
||||
|
||||
bool visit(TypeId ty, const FunctionType& ft) override
|
||||
{
|
||||
if (seenWithPolarity(ty))
|
||||
if (cachedTypes->contains(ty) || seenWithPolarity(ty))
|
||||
return false;
|
||||
|
||||
flip();
|
||||
@ -486,8 +499,371 @@ struct FreeTypeSearcher : TypeVisitor
|
||||
}
|
||||
};
|
||||
|
||||
// We keep a running set of types that will not change under generalization and
|
||||
// only have outgoing references to types that are the same. We use this to
|
||||
// short circuit generalization. It improves performance quite a lot.
|
||||
//
|
||||
// We do this by tracing through the type and searching for types that are
|
||||
// uncacheable. If a type has a reference to an uncacheable type, it is itself
|
||||
// uncacheable.
|
||||
//
|
||||
// If a type has no outbound references to uncacheable types, we add it to the
|
||||
// cache.
|
||||
struct TypeCacher : TypeOnceVisitor
|
||||
{
|
||||
NotNull<DenseHashSet<TypeId>> cachedTypes;
|
||||
|
||||
std::optional<TypeId> generalize(NotNull<TypeArena> arena, NotNull<BuiltinTypes> builtinTypes, NotNull<Scope> scope, TypeId ty)
|
||||
DenseHashSet<TypeId> uncacheable{nullptr};
|
||||
DenseHashSet<TypePackId> uncacheablePacks{nullptr};
|
||||
|
||||
explicit TypeCacher(NotNull<DenseHashSet<TypeId>> cachedTypes)
|
||||
: TypeOnceVisitor(/* skipBoundTypes */ true)
|
||||
, cachedTypes(cachedTypes)
|
||||
{}
|
||||
|
||||
void cache(TypeId ty)
|
||||
{
|
||||
cachedTypes->insert(ty);
|
||||
}
|
||||
|
||||
bool isCached(TypeId ty) const
|
||||
{
|
||||
return cachedTypes->contains(ty);
|
||||
}
|
||||
|
||||
void markUncacheable(TypeId ty)
|
||||
{
|
||||
uncacheable.insert(ty);
|
||||
}
|
||||
|
||||
void markUncacheable(TypePackId tp)
|
||||
{
|
||||
uncacheablePacks.insert(tp);
|
||||
}
|
||||
|
||||
bool isUncacheable(TypeId ty) const
|
||||
{
|
||||
return uncacheable.contains(ty);
|
||||
}
|
||||
|
||||
bool isUncacheable(TypePackId tp) const
|
||||
{
|
||||
return uncacheablePacks.contains(tp);
|
||||
}
|
||||
|
||||
bool visit(TypeId ty) override
|
||||
{
|
||||
if (isUncacheable(ty) || isCached(ty))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const FreeType& ft) override
|
||||
{
|
||||
// Free types are never cacheable.
|
||||
LUAU_ASSERT(!isCached(ty));
|
||||
|
||||
if (!isUncacheable(ty))
|
||||
{
|
||||
traverse(ft.lowerBound);
|
||||
traverse(ft.upperBound);
|
||||
|
||||
markUncacheable(ty);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const GenericType&) override
|
||||
{
|
||||
cache(ty);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const PrimitiveType&) override
|
||||
{
|
||||
cache(ty);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const SingletonType&) override
|
||||
{
|
||||
cache(ty);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const BlockedType&) override
|
||||
{
|
||||
markUncacheable(ty);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const PendingExpansionType&) override
|
||||
{
|
||||
markUncacheable(ty);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const FunctionType& ft) override
|
||||
{
|
||||
if (isCached(ty) || isUncacheable(ty))
|
||||
return false;
|
||||
|
||||
traverse(ft.argTypes);
|
||||
traverse(ft.retTypes);
|
||||
for (TypeId gen: ft.generics)
|
||||
traverse(gen);
|
||||
|
||||
bool uncacheable = false;
|
||||
|
||||
if (isUncacheable(ft.argTypes))
|
||||
uncacheable = true;
|
||||
|
||||
else if (isUncacheable(ft.retTypes))
|
||||
uncacheable = true;
|
||||
|
||||
for (TypeId argTy: ft.argTypes)
|
||||
{
|
||||
if (isUncacheable(argTy))
|
||||
{
|
||||
uncacheable = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
for (TypeId retTy: ft.retTypes)
|
||||
{
|
||||
if (isUncacheable(retTy))
|
||||
{
|
||||
uncacheable = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
for (TypeId g: ft.generics)
|
||||
{
|
||||
if (isUncacheable(g))
|
||||
{
|
||||
uncacheable = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (uncacheable)
|
||||
markUncacheable(ty);
|
||||
else
|
||||
cache(ty);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const TableType& tt) override
|
||||
{
|
||||
if (isCached(ty) || isUncacheable(ty))
|
||||
return false;
|
||||
|
||||
if (tt.boundTo)
|
||||
{
|
||||
traverse(*tt.boundTo);
|
||||
if (isUncacheable(*tt.boundTo))
|
||||
{
|
||||
markUncacheable(ty);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
bool uncacheable = false;
|
||||
|
||||
// This logic runs immediately after generalization, so any remaining
|
||||
// unsealed tables are assuredly not cacheable. They may yet have
|
||||
// properties added to them.
|
||||
if (tt.state == TableState::Free || tt.state == TableState::Unsealed)
|
||||
uncacheable = true;
|
||||
|
||||
for (const auto& [_name, prop] : tt.props)
|
||||
{
|
||||
if (prop.readTy)
|
||||
{
|
||||
traverse(*prop.readTy);
|
||||
|
||||
if (isUncacheable(*prop.readTy))
|
||||
uncacheable = true;
|
||||
}
|
||||
if (prop.writeTy && prop.writeTy != prop.readTy)
|
||||
{
|
||||
traverse(*prop.writeTy);
|
||||
|
||||
if (isUncacheable(*prop.writeTy))
|
||||
uncacheable = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (tt.indexer)
|
||||
{
|
||||
traverse(tt.indexer->indexType);
|
||||
if (isUncacheable(tt.indexer->indexType))
|
||||
uncacheable = true;
|
||||
|
||||
traverse(tt.indexer->indexResultType);
|
||||
if (isUncacheable(tt.indexer->indexResultType))
|
||||
uncacheable = true;
|
||||
}
|
||||
|
||||
if (uncacheable)
|
||||
markUncacheable(ty);
|
||||
else
|
||||
cache(ty);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const ClassType&) override
|
||||
{
|
||||
cache(ty);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const AnyType&) override
|
||||
{
|
||||
cache(ty);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const UnionType& ut) override
|
||||
{
|
||||
if (isUncacheable(ty) || isCached(ty))
|
||||
return false;
|
||||
|
||||
bool uncacheable = false;
|
||||
|
||||
for (TypeId partTy : ut.options)
|
||||
{
|
||||
traverse(partTy);
|
||||
|
||||
uncacheable |= isUncacheable(partTy);
|
||||
}
|
||||
|
||||
if (uncacheable)
|
||||
markUncacheable(ty);
|
||||
else
|
||||
cache(ty);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const IntersectionType& it) override
|
||||
{
|
||||
if (isUncacheable(ty) || isCached(ty))
|
||||
return false;
|
||||
|
||||
bool uncacheable = false;
|
||||
|
||||
for (TypeId partTy : it.parts)
|
||||
{
|
||||
traverse(partTy);
|
||||
|
||||
uncacheable |= isUncacheable(partTy);
|
||||
}
|
||||
|
||||
if (uncacheable)
|
||||
markUncacheable(ty);
|
||||
else
|
||||
cache(ty);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const UnknownType&) override
|
||||
{
|
||||
cache(ty);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const NeverType&) override
|
||||
{
|
||||
cache(ty);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const NegationType& nt) override
|
||||
{
|
||||
if (!isCached(ty) && !isUncacheable(ty))
|
||||
{
|
||||
traverse(nt.ty);
|
||||
|
||||
if (isUncacheable(nt.ty))
|
||||
markUncacheable(ty);
|
||||
else
|
||||
cache(ty);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypeId ty, const TypeFamilyInstanceType& tfit) override
|
||||
{
|
||||
if (isCached(ty) || isUncacheable(ty))
|
||||
return false;
|
||||
|
||||
bool uncacheable = false;
|
||||
|
||||
for (TypeId argTy : tfit.typeArguments)
|
||||
{
|
||||
traverse(argTy);
|
||||
|
||||
if (isUncacheable(argTy))
|
||||
uncacheable = true;
|
||||
}
|
||||
|
||||
for (TypePackId argPack : tfit.packArguments)
|
||||
{
|
||||
traverse(argPack);
|
||||
|
||||
if (isUncacheable(argPack))
|
||||
uncacheable = true;
|
||||
}
|
||||
|
||||
if (uncacheable)
|
||||
markUncacheable(ty);
|
||||
else
|
||||
cache(ty);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypePackId tp, const FreeTypePack&) override
|
||||
{
|
||||
markUncacheable(tp);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypePackId tp, const VariadicTypePack& vtp) override
|
||||
{
|
||||
if (isUncacheable(tp))
|
||||
return false;
|
||||
|
||||
traverse(vtp.ty);
|
||||
|
||||
if (isUncacheable(vtp.ty))
|
||||
markUncacheable(tp);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypePackId tp, const BlockedTypePack&) override
|
||||
{
|
||||
markUncacheable(tp);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visit(TypePackId tp, const TypeFamilyInstanceTypePack&) override
|
||||
{
|
||||
markUncacheable(tp);
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
std::optional<TypeId> generalize(NotNull<TypeArena> arena, NotNull<BuiltinTypes> builtinTypes, NotNull<Scope> scope, NotNull<DenseHashSet<TypeId>> cachedTypes, TypeId ty)
|
||||
{
|
||||
ty = follow(ty);
|
||||
|
||||
@ -497,10 +873,10 @@ std::optional<TypeId> generalize(NotNull<TypeArena> arena, NotNull<BuiltinTypes>
|
||||
if (const FunctionType* ft = get<FunctionType>(ty); ft && (!ft->generics.empty() || !ft->genericPacks.empty()))
|
||||
return ty;
|
||||
|
||||
FreeTypeSearcher fts{scope};
|
||||
FreeTypeSearcher fts{scope, cachedTypes};
|
||||
fts.traverse(ty);
|
||||
|
||||
MutatingGeneralizer gen{builtinTypes, scope, std::move(fts.positiveTypes), std::move(fts.negativeTypes)};
|
||||
MutatingGeneralizer gen{builtinTypes, scope, cachedTypes, std::move(fts.positiveTypes), std::move(fts.negativeTypes)};
|
||||
|
||||
gen.traverse(ty);
|
||||
|
||||
@ -513,6 +889,9 @@ std::optional<TypeId> generalize(NotNull<TypeArena> arena, NotNull<BuiltinTypes>
|
||||
if (ty->owningArena != arena || ty->persistent)
|
||||
return ty;
|
||||
|
||||
TypeCacher cacher{cachedTypes};
|
||||
cacher.traverse(ty);
|
||||
|
||||
FunctionType* ftv = getMutable<FunctionType>(ty);
|
||||
if (ftv)
|
||||
{
|
||||
|
@ -18,7 +18,6 @@
|
||||
LUAU_FASTFLAGVARIABLE(DebugLuauCheckNormalizeInvariant, false)
|
||||
LUAU_FASTFLAGVARIABLE(LuauNormalizeAwayUninhabitableTables, false)
|
||||
LUAU_FASTFLAGVARIABLE(LuauNormalizeNotUnknownIntersection, false);
|
||||
LUAU_FASTFLAGVARIABLE(LuauFixCyclicUnionsOfIntersections, false);
|
||||
LUAU_FASTFLAGVARIABLE(LuauFixReduceStackPressure, false);
|
||||
LUAU_FASTFLAGVARIABLE(LuauFixCyclicTablesBlowingStack, false);
|
||||
|
||||
@ -27,11 +26,6 @@ LUAU_FASTINTVARIABLE(LuauNormalizeIterationLimit, 1200);
|
||||
LUAU_FASTINTVARIABLE(LuauNormalizeCacheLimit, 100000);
|
||||
LUAU_FASTFLAG(DebugLuauDeferredConstraintResolution);
|
||||
|
||||
static bool fixCyclicUnionsOfIntersections()
|
||||
{
|
||||
return FFlag::LuauFixCyclicUnionsOfIntersections || FFlag::DebugLuauDeferredConstraintResolution;
|
||||
}
|
||||
|
||||
static bool fixReduceStackPressure()
|
||||
{
|
||||
return FFlag::LuauFixReduceStackPressure || FFlag::DebugLuauDeferredConstraintResolution;
|
||||
@ -1776,12 +1770,9 @@ NormalizationResult Normalizer::unionNormalWithTy(NormalizedType& here, TypeId t
|
||||
}
|
||||
else if (const IntersectionType* itv = get<IntersectionType>(there))
|
||||
{
|
||||
if (fixCyclicUnionsOfIntersections())
|
||||
{
|
||||
if (seenSetTypes.count(there))
|
||||
return NormalizationResult::True;
|
||||
seenSetTypes.insert(there);
|
||||
}
|
||||
if (seenSetTypes.count(there))
|
||||
return NormalizationResult::True;
|
||||
seenSetTypes.insert(there);
|
||||
|
||||
NormalizedType norm{builtinTypes};
|
||||
norm.tops = builtinTypes->anyType;
|
||||
@ -1790,14 +1781,12 @@ NormalizationResult Normalizer::unionNormalWithTy(NormalizedType& here, TypeId t
|
||||
NormalizationResult res = intersectNormalWithTy(norm, *it, seenSetTypes);
|
||||
if (res != NormalizationResult::True)
|
||||
{
|
||||
if (fixCyclicUnionsOfIntersections())
|
||||
seenSetTypes.erase(there);
|
||||
seenSetTypes.erase(there);
|
||||
return res;
|
||||
}
|
||||
}
|
||||
|
||||
if (fixCyclicUnionsOfIntersections())
|
||||
seenSetTypes.erase(there);
|
||||
seenSetTypes.erase(there);
|
||||
|
||||
return unionNormals(here, norm);
|
||||
}
|
||||
|
@ -337,7 +337,9 @@ TypeId matchLiteralType(NotNull<DenseHashMap<const AstExpr*, TypeId>> astTypes,
|
||||
TypeId matchedType = matchLiteralType(astTypes, astExpectedTypes, builtinTypes, arena, unifier,
|
||||
expectedTableTy->indexer->indexResultType, *propTy, item.value, toBlock);
|
||||
|
||||
tableTy->indexer->indexResultType = matchedType;
|
||||
// if the index result type is the prop type, we can replace it with the matched type here.
|
||||
if (tableTy->indexer->indexResultType == *propTy)
|
||||
tableTy->indexer->indexResultType = matchedType;
|
||||
}
|
||||
}
|
||||
else if (item.kind == AstExprTable::Item::General)
|
||||
|
@ -446,7 +446,6 @@ struct TypeChecker2
|
||||
.errors;
|
||||
if (!isErrorSuppressing(location, instance))
|
||||
reportErrors(std::move(errors));
|
||||
|
||||
return instance;
|
||||
}
|
||||
|
||||
@ -1108,10 +1107,13 @@ struct TypeChecker2
|
||||
void visit(AstStatCompoundAssign* stat)
|
||||
{
|
||||
AstExprBinary fake{stat->location, stat->op, stat->var, stat->value};
|
||||
TypeId resultTy = visit(&fake, stat);
|
||||
visit(&fake, stat);
|
||||
|
||||
TypeId* resultTy = module->astCompoundAssignResultTypes.find(stat);
|
||||
LUAU_ASSERT(resultTy);
|
||||
TypeId varTy = lookupType(stat->var);
|
||||
|
||||
testIsSubtype(resultTy, varTy, stat->location);
|
||||
testIsSubtype(*resultTy, varTy, stat->location);
|
||||
}
|
||||
|
||||
void visit(AstStatFunction* stat)
|
||||
@ -1857,7 +1859,7 @@ struct TypeChecker2
|
||||
|
||||
bool isStringOperation =
|
||||
(normLeft ? normLeft->isSubtypeOfString() : isString(leftType)) && (normRight ? normRight->isSubtypeOfString() : isString(rightType));
|
||||
|
||||
leftType = follow(leftType);
|
||||
if (get<AnyType>(leftType) || get<ErrorType>(leftType) || get<NeverType>(leftType))
|
||||
return leftType;
|
||||
else if (get<AnyType>(rightType) || get<ErrorType>(rightType) || get<NeverType>(rightType))
|
||||
|
@ -1490,6 +1490,18 @@ TypeFamilyReductionResult<TypeId> refineFamilyFn(TypeId instance, const std::vec
|
||||
if (get<AnyType>(follow(nt->ty)))
|
||||
return {targetTy, false, {}, {}};
|
||||
|
||||
// If the target type is a table, then simplification already implements the logic to deal with refinements properly since the
|
||||
// type of the discriminant is guaranteed to only ever be an (arbitrarily-nested) table of a single property type.
|
||||
if (get<TableType>(targetTy))
|
||||
{
|
||||
SimplifyResult result = simplifyIntersection(ctx->builtins, ctx->arena, targetTy, discriminantTy);
|
||||
if (!result.blockedTypes.empty())
|
||||
return {std::nullopt, false, {result.blockedTypes.begin(), result.blockedTypes.end()}, {}};
|
||||
|
||||
return {result.result, false, {}, {}};
|
||||
}
|
||||
|
||||
// In the general case, we'll still use normalization though.
|
||||
TypeId intersection = ctx->arena->addType(IntersectionType{{targetTy, discriminantTy}});
|
||||
std::shared_ptr<const NormalizedType> normIntersection = ctx->normalizer->normalize(intersection);
|
||||
std::shared_ptr<const NormalizedType> normType = ctx->normalizer->normalize(targetTy);
|
||||
@ -1853,6 +1865,208 @@ TypeFamilyReductionResult<TypeId> rawkeyofFamilyFn(TypeId instance, const std::v
|
||||
return keyofFamilyImpl(typeParams, packParams, ctx, /* isRaw */ true);
|
||||
}
|
||||
|
||||
/* Searches through table's or class's props/indexer to find the property of `ty`
|
||||
If found, appends that property to `result` and returns true
|
||||
Else, returns false */
|
||||
bool searchPropsAndIndexer(
|
||||
TypeId ty, TableType::Props tblProps, std::optional<TableIndexer> tblIndexer, DenseHashSet<TypeId>& result, NotNull<TypeFamilyContext> ctx)
|
||||
{
|
||||
ty = follow(ty);
|
||||
|
||||
// index into tbl's properties
|
||||
if (auto stringSingleton = get<StringSingleton>(get<SingletonType>(ty)))
|
||||
{
|
||||
if (tblProps.find(stringSingleton->value) != tblProps.end())
|
||||
{
|
||||
TypeId propTy = follow(tblProps.at(stringSingleton->value).type());
|
||||
|
||||
// property is a union type -> we need to extend our reduction type
|
||||
if (auto propUnionTy = get<UnionType>(propTy))
|
||||
{
|
||||
for (TypeId option : propUnionTy->options)
|
||||
result.insert(option);
|
||||
}
|
||||
else // property is a singular type or intersection type -> we can simply append
|
||||
result.insert(propTy);
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
// index into tbl's indexer
|
||||
if (tblIndexer)
|
||||
{
|
||||
if (isSubtype(ty, tblIndexer->indexType, ctx->scope, ctx->builtins, *ctx->ice))
|
||||
{
|
||||
TypeId idxResultTy = follow(tblIndexer->indexResultType);
|
||||
|
||||
// indexResultType is a union type -> we need to extend our reduction type
|
||||
if (auto idxResUnionTy = get<UnionType>(idxResultTy))
|
||||
{
|
||||
for (TypeId option : idxResUnionTy->options)
|
||||
result.insert(option);
|
||||
}
|
||||
else // indexResultType is a singular type or intersection type -> we can simply append
|
||||
result.insert(idxResultTy);
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/* Handles recursion / metamethods of tables/classes
|
||||
`isRaw` parameter indicates whether or not we should follow __index metamethods
|
||||
returns false if property of `ty` could not be found */
|
||||
bool tblIndexInto(TypeId indexer, TypeId indexee, DenseHashSet<TypeId>& result, NotNull<TypeFamilyContext> ctx, bool isRaw)
|
||||
{
|
||||
indexer = follow(indexer);
|
||||
indexee = follow(indexee);
|
||||
|
||||
// we have a table type to try indexing
|
||||
if (auto tableTy = get<TableType>(indexee))
|
||||
{
|
||||
return searchPropsAndIndexer(indexer, tableTy->props, tableTy->indexer, result, ctx);
|
||||
}
|
||||
|
||||
// we have a metatable type to try indexing
|
||||
if (auto metatableTy = get<MetatableType>(indexee))
|
||||
{
|
||||
if (auto tableTy = get<TableType>(metatableTy->table))
|
||||
{
|
||||
|
||||
// try finding all properties within the current scope of the table
|
||||
if (searchPropsAndIndexer(indexer, tableTy->props, tableTy->indexer, result, ctx))
|
||||
return true;
|
||||
}
|
||||
|
||||
// if the code reached here, it means we weren't able to find all properties -> look into __index metamethod
|
||||
if (!isRaw)
|
||||
{
|
||||
// findMetatableEntry demands the ability to emit errors, so we must give it
|
||||
// the necessary state to do that, even if we intend to just eat the errors.
|
||||
ErrorVec dummy;
|
||||
std::optional<TypeId> mmType = findMetatableEntry(ctx->builtins, dummy, indexee, "__index", Location{});
|
||||
if (mmType)
|
||||
return tblIndexInto(indexer, *mmType, result, ctx, isRaw);
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/* Vocabulary note: indexee refers to the type that contains the properties,
|
||||
indexer refers to the type that is used to access indexee
|
||||
Example: index<Person, "name"> => `Person` is the indexee and `"name"` is the indexer */
|
||||
TypeFamilyReductionResult<TypeId> indexFamilyFn(
|
||||
TypeId instance, const std::vector<TypeId>& typeParams, const std::vector<TypePackId>& packParams, NotNull<TypeFamilyContext> ctx)
|
||||
{
|
||||
if (typeParams.size() != 2 || !packParams.empty())
|
||||
{
|
||||
ctx->ice->ice("index type family: encountered a type family instance without the required argument structure");
|
||||
LUAU_ASSERT(false);
|
||||
}
|
||||
|
||||
TypeId indexeeTy = follow(typeParams.at(0));
|
||||
std::shared_ptr<const NormalizedType> indexeeNormTy = ctx->normalizer->normalize(indexeeTy);
|
||||
|
||||
// if the indexee failed to normalize, we can't reduce, but know nothing about inhabitance.
|
||||
if (!indexeeNormTy)
|
||||
return {std::nullopt, false, {}, {}};
|
||||
|
||||
// if we don't have either just tables or just classes, we've got nothing to index into
|
||||
if (indexeeNormTy->hasTables() == indexeeNormTy->hasClasses())
|
||||
return {std::nullopt, true, {}, {}};
|
||||
|
||||
// we're trying to reject any type that has not normalized to a table/class or a union of tables/classes.
|
||||
if (indexeeNormTy->hasTops() || indexeeNormTy->hasBooleans() || indexeeNormTy->hasErrors() || indexeeNormTy->hasNils() ||
|
||||
indexeeNormTy->hasNumbers() || indexeeNormTy->hasStrings() || indexeeNormTy->hasThreads() || indexeeNormTy->hasBuffers() ||
|
||||
indexeeNormTy->hasFunctions() || indexeeNormTy->hasTyvars())
|
||||
return {std::nullopt, true, {}, {}};
|
||||
|
||||
TypeId indexerTy = follow(typeParams.at(1));
|
||||
std::shared_ptr<const NormalizedType> indexerNormTy = ctx->normalizer->normalize(indexerTy);
|
||||
|
||||
// if the indexer failed to normalize, we can't reduce, but know nothing about inhabitance.
|
||||
if (!indexerNormTy)
|
||||
return {std::nullopt, false, {}, {}};
|
||||
|
||||
// we're trying to reject any type that is not a string singleton or primitive (string, number, boolean, thread, nil, function, table, or buffer)
|
||||
if (indexerNormTy->hasTops() || indexerNormTy->hasErrors())
|
||||
return {std::nullopt, true, {}, {}};
|
||||
|
||||
// indexer can be a union —> break them down into a vector
|
||||
const std::vector<TypeId>* typesToFind;
|
||||
const std::vector<TypeId> singleType{indexerTy};
|
||||
if (auto unionTy = get<UnionType>(indexerTy))
|
||||
typesToFind = &unionTy->options;
|
||||
else
|
||||
typesToFind = &singleType;
|
||||
|
||||
DenseHashSet<TypeId> properties{{}}; // vector of types that will be returned
|
||||
bool isRaw = false;
|
||||
|
||||
if (indexeeNormTy->hasClasses())
|
||||
{
|
||||
LUAU_ASSERT(!indexeeNormTy->hasTables());
|
||||
|
||||
// at least one class is guaranteed to be in the iterator by .hasClasses()
|
||||
for (auto classesIter = indexeeNormTy->classes.ordering.begin(); classesIter != indexeeNormTy->classes.ordering.end(); ++classesIter)
|
||||
{
|
||||
auto classTy = get<ClassType>(*classesIter);
|
||||
if (!classTy)
|
||||
{
|
||||
LUAU_ASSERT(false); // this should not be possible according to normalization's spec
|
||||
return {std::nullopt, true, {}, {}};
|
||||
}
|
||||
|
||||
for (TypeId ty : *typesToFind)
|
||||
{
|
||||
// Search for all instances of indexer in class->props and class->indexer using `indexInto`
|
||||
if (searchPropsAndIndexer(ty, classTy->props, classTy->indexer, properties, ctx))
|
||||
continue; // Indexer was found in this class, so we can move on to the next
|
||||
|
||||
// If code reaches here,that means the property not found -> check in the metatable's __index
|
||||
|
||||
// findMetatableEntry demands the ability to emit errors, so we must give it
|
||||
// the necessary state to do that, even if we intend to just eat the errors.
|
||||
ErrorVec dummy;
|
||||
std::optional<TypeId> mmType = findMetatableEntry(ctx->builtins, dummy, *classesIter, "__index", Location{});
|
||||
if (!mmType) // if a metatable does not exist, there is no where else to look
|
||||
return {std::nullopt, true, {}, {}};
|
||||
|
||||
if (!tblIndexInto(ty, *mmType, properties, ctx, isRaw)) // if indexer is not in the metatable, we fail to reduce
|
||||
return {std::nullopt, true, {}, {}};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (indexeeNormTy->hasTables())
|
||||
{
|
||||
LUAU_ASSERT(!indexeeNormTy->hasClasses());
|
||||
|
||||
// at least one table is guaranteed to be in the iterator by .hasTables()
|
||||
for (auto tablesIter = indexeeNormTy->tables.begin(); tablesIter != indexeeNormTy->tables.end(); ++tablesIter)
|
||||
{
|
||||
for (TypeId ty : *typesToFind)
|
||||
if (!tblIndexInto(ty, *tablesIter, properties, ctx, isRaw))
|
||||
return {std::nullopt, true, {}, {}};
|
||||
}
|
||||
}
|
||||
|
||||
// Call `follow()` on each element to resolve all Bound types before returning
|
||||
std::transform(properties.begin(), properties.end(), properties.begin(), [](TypeId ty) {
|
||||
return follow(ty);
|
||||
});
|
||||
|
||||
// If the type being reduced to is a single type, no need to union
|
||||
if (properties.size() == 1)
|
||||
return {*properties.begin(), false, {}, {}};
|
||||
|
||||
return {ctx->arena->addType(UnionType{std::vector<TypeId>(properties.begin(), properties.end())}), false, {}, {}};
|
||||
}
|
||||
|
||||
BuiltinTypeFamilies::BuiltinTypeFamilies()
|
||||
: notFamily{"not", notFamilyFn}
|
||||
, lenFamily{"len", lenFamilyFn}
|
||||
@ -1876,6 +2090,7 @@ BuiltinTypeFamilies::BuiltinTypeFamilies()
|
||||
, intersectFamily{"intersect", intersectFamilyFn}
|
||||
, keyofFamily{"keyof", keyofFamilyFn}
|
||||
, rawkeyofFamily{"rawkeyof", rawkeyofFamilyFn}
|
||||
, indexFamily{"index", indexFamilyFn}
|
||||
{
|
||||
}
|
||||
|
||||
@ -1917,6 +2132,8 @@ void BuiltinTypeFamilies::addToScope(NotNull<TypeArena> arena, NotNull<Scope> sc
|
||||
|
||||
scope->exportedTypeBindings[keyofFamily.name] = mkUnaryTypeFamily(&keyofFamily);
|
||||
scope->exportedTypeBindings[rawkeyofFamily.name] = mkUnaryTypeFamily(&rawkeyofFamily);
|
||||
|
||||
scope->exportedTypeBindings[indexFamily.name] = mkBinaryTypeFamily(&indexFamily);
|
||||
}
|
||||
|
||||
} // namespace Luau
|
||||
|
@ -37,7 +37,6 @@ LUAU_FASTFLAGVARIABLE(LuauMetatableInstantiationCloneCheck, false)
|
||||
LUAU_FASTFLAGVARIABLE(LuauTinyControlFlowAnalysis, false)
|
||||
LUAU_FASTFLAGVARIABLE(LuauAlwaysCommitInferencesOfFunctionCalls, false)
|
||||
LUAU_FASTFLAGVARIABLE(LuauRemoveBadRelationalOperatorWarning, false)
|
||||
LUAU_FASTFLAGVARIABLE(LuauForbidAliasNamedTypeof, false)
|
||||
LUAU_FASTFLAGVARIABLE(LuauOkWithIteratingOverTableProperties, false)
|
||||
|
||||
namespace Luau
|
||||
@ -667,7 +666,7 @@ LUAU_NOINLINE void TypeChecker::checkBlockTypeAliases(const ScopePtr& scope, std
|
||||
{
|
||||
if (const auto& typealias = stat->as<AstStatTypeAlias>())
|
||||
{
|
||||
if (typealias->name == kParseNameError || (FFlag::LuauForbidAliasNamedTypeof && typealias->name == "typeof"))
|
||||
if (typealias->name == kParseNameError || typealias->name == "typeof")
|
||||
continue;
|
||||
|
||||
auto& bindings = typealias->exported ? scope->exportedTypeBindings : scope->privateTypeBindings;
|
||||
@ -1535,7 +1534,7 @@ ControlFlow TypeChecker::check(const ScopePtr& scope, const AstStatTypeAlias& ty
|
||||
if (name == kParseNameError)
|
||||
return ControlFlow::None;
|
||||
|
||||
if (FFlag::LuauForbidAliasNamedTypeof && name == "typeof")
|
||||
if (name == "typeof")
|
||||
{
|
||||
reportError(typealias.location, GenericError{"Type aliases cannot be named typeof"});
|
||||
return ControlFlow::None;
|
||||
@ -1656,7 +1655,7 @@ void TypeChecker::prototype(const ScopePtr& scope, const AstStatTypeAlias& typea
|
||||
// If the alias is missing a name, we can't do anything with it. Ignore it.
|
||||
// Also, typeof is not a valid type alias name. We will report an error for
|
||||
// this in check()
|
||||
if (name == kParseNameError || (FFlag::LuauForbidAliasNamedTypeof && name == "typeof"))
|
||||
if (name == kParseNameError || name == "typeof")
|
||||
return;
|
||||
|
||||
std::optional<TypeFun> binding;
|
||||
|
@ -207,6 +207,7 @@ public:
|
||||
enum Type
|
||||
{
|
||||
Checked,
|
||||
Native,
|
||||
};
|
||||
|
||||
AstAttr(const Location& location, Type type);
|
||||
@ -420,6 +421,8 @@ public:
|
||||
|
||||
void visit(AstVisitor* visitor) override;
|
||||
|
||||
bool hasNativeAttribute() const;
|
||||
|
||||
AstArray<AstAttr*> attributes;
|
||||
AstArray<AstGenericType> generics;
|
||||
AstArray<AstGenericTypePack> genericPacks;
|
||||
|
@ -234,7 +234,7 @@ private:
|
||||
// asexp -> simpleexp [`::' Type]
|
||||
AstExpr* parseAssertionExpr();
|
||||
|
||||
// simpleexp -> NUMBER | STRING | NIL | true | false | ... | constructor | FUNCTION body | primaryexp
|
||||
// simpleexp -> NUMBER | STRING | NIL | true | false | ... | constructor | [attributes] FUNCTION body | primaryexp
|
||||
AstExpr* parseSimpleExpr();
|
||||
|
||||
// args ::= `(' [explist] `)' | tableconstructor | String
|
||||
|
@ -4,6 +4,7 @@
|
||||
#include "Luau/Common.h"
|
||||
|
||||
LUAU_FASTFLAG(LuauAttributeSyntax);
|
||||
LUAU_FASTFLAG(LuauNativeAttribute);
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
@ -214,6 +215,18 @@ void AstExprFunction::visit(AstVisitor* visitor)
|
||||
}
|
||||
}
|
||||
|
||||
bool AstExprFunction::hasNativeAttribute() const
|
||||
{
|
||||
LUAU_ASSERT(FFlag::LuauNativeAttribute);
|
||||
|
||||
for (const auto attribute : attributes)
|
||||
{
|
||||
if (attribute->type == AstAttr::Type::Native)
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
AstExprTable::AstExprTable(const Location& location, const AstArray<Item>& items)
|
||||
: AstExpr(ClassIndex(), location)
|
||||
, items(items)
|
||||
|
@ -18,7 +18,9 @@ LUAU_FASTINTVARIABLE(LuauParseErrorLimit, 100)
|
||||
// See docs/SyntaxChanges.md for an explanation.
|
||||
LUAU_FASTFLAGVARIABLE(DebugLuauDeferredConstraintResolution, false)
|
||||
LUAU_FASTFLAG(LuauAttributeSyntax)
|
||||
LUAU_FASTFLAGVARIABLE(LuauLeadingBarAndAmpersand, false)
|
||||
LUAU_FASTFLAGVARIABLE(LuauLeadingBarAndAmpersand2, false)
|
||||
LUAU_FASTFLAGVARIABLE(LuauNativeAttribute, false)
|
||||
LUAU_FASTFLAGVARIABLE(LuauAttributeSyntaxFunExpr, false)
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
@ -29,7 +31,7 @@ struct AttributeEntry
|
||||
AstAttr::Type type;
|
||||
};
|
||||
|
||||
AttributeEntry kAttributeEntries[] = {{"@checked", AstAttr::Type::Checked}, {nullptr, AstAttr::Type::Checked}};
|
||||
AttributeEntry kAttributeEntries[] = {{"@checked", AstAttr::Type::Checked}, {"@native", AstAttr::Type::Native}, {nullptr, AstAttr::Type::Checked}};
|
||||
|
||||
ParseError::ParseError(const Location& location, const std::string& message)
|
||||
: location(location)
|
||||
@ -703,6 +705,10 @@ std::pair<bool, AstAttr::Type> Parser::validateAttribute(const char* attributeNa
|
||||
if (found)
|
||||
{
|
||||
type = kAttributeEntries[i].type;
|
||||
|
||||
if (!FFlag::LuauNativeAttribute && type == AstAttr::Type::Native)
|
||||
found = false;
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -772,7 +778,7 @@ AstStat* Parser::parseAttributeStat()
|
||||
{
|
||||
LUAU_ASSERT(FFlag::LuauAttributeSyntax);
|
||||
|
||||
AstArray<AstAttr*> attributes = Parser::parseAttributes();
|
||||
AstArray<AstAttr*> attributes = parseAttributes();
|
||||
|
||||
Lexeme::Type type = lexer.current().type;
|
||||
|
||||
@ -1654,7 +1660,7 @@ AstType* Parser::parseTypeSuffix(AstType* type, const Location& begin)
|
||||
{
|
||||
TempVector<AstType*> parts(scratchType);
|
||||
|
||||
if (!FFlag::LuauLeadingBarAndAmpersand || type != nullptr)
|
||||
if (!FFlag::LuauLeadingBarAndAmpersand2 || type != nullptr)
|
||||
{
|
||||
parts.push_back(type);
|
||||
}
|
||||
@ -1682,6 +1688,8 @@ AstType* Parser::parseTypeSuffix(AstType* type, const Location& begin)
|
||||
}
|
||||
else if (c == '?')
|
||||
{
|
||||
LUAU_ASSERT(parts.size() >= 1);
|
||||
|
||||
Location loc = lexer.current().location;
|
||||
nextLexeme();
|
||||
|
||||
@ -1714,7 +1722,7 @@ AstType* Parser::parseTypeSuffix(AstType* type, const Location& begin)
|
||||
}
|
||||
|
||||
if (parts.size() == 1)
|
||||
return type;
|
||||
return FFlag::LuauLeadingBarAndAmpersand2 ? parts[0] : type;
|
||||
|
||||
if (isUnion && isIntersection)
|
||||
{
|
||||
@ -1761,7 +1769,7 @@ AstType* Parser::parseType(bool inDeclarationContext)
|
||||
|
||||
Location begin = lexer.current().location;
|
||||
|
||||
if (FFlag::LuauLeadingBarAndAmpersand)
|
||||
if (FFlag::LuauLeadingBarAndAmpersand2)
|
||||
{
|
||||
AstType* type = nullptr;
|
||||
|
||||
@ -2369,11 +2377,24 @@ static ConstantNumberParseResult parseDouble(double& result, const char* data)
|
||||
return ConstantNumberParseResult::Ok;
|
||||
}
|
||||
|
||||
// simpleexp -> NUMBER | STRING | NIL | true | false | ... | constructor | FUNCTION body | primaryexp
|
||||
// simpleexp -> NUMBER | STRING | NIL | true | false | ... | constructor | [attributes] FUNCTION body | primaryexp
|
||||
AstExpr* Parser::parseSimpleExpr()
|
||||
{
|
||||
Location start = lexer.current().location;
|
||||
|
||||
AstArray<AstAttr*> attributes{nullptr, 0};
|
||||
|
||||
if (FFlag::LuauAttributeSyntax && FFlag::LuauAttributeSyntaxFunExpr && lexer.current().type == Lexeme::Attribute)
|
||||
{
|
||||
attributes = parseAttributes();
|
||||
|
||||
if (lexer.current().type != Lexeme::ReservedFunction)
|
||||
{
|
||||
return reportExprError(
|
||||
start, {}, "Expected 'function' declaration after attribute, but got %s intead", lexer.current().toString().c_str());
|
||||
}
|
||||
}
|
||||
|
||||
if (lexer.current().type == Lexeme::ReservedNil)
|
||||
{
|
||||
nextLexeme();
|
||||
@ -2397,7 +2418,7 @@ AstExpr* Parser::parseSimpleExpr()
|
||||
Lexeme matchFunction = lexer.current();
|
||||
nextLexeme();
|
||||
|
||||
return parseFunctionBody(false, matchFunction, AstName(), nullptr, AstArray<AstAttr*>({nullptr, 0})).first;
|
||||
return parseFunctionBody(false, matchFunction, AstName(), nullptr, attributes).first;
|
||||
}
|
||||
else if (lexer.current().type == Lexeme::Number)
|
||||
{
|
||||
|
@ -54,6 +54,7 @@ struct IrBuilder
|
||||
IrOp inst(IrCmd cmd, IrOp a, IrOp b, IrOp c, IrOp d);
|
||||
IrOp inst(IrCmd cmd, IrOp a, IrOp b, IrOp c, IrOp d, IrOp e);
|
||||
IrOp inst(IrCmd cmd, IrOp a, IrOp b, IrOp c, IrOp d, IrOp e, IrOp f);
|
||||
IrOp inst(IrCmd cmd, IrOp a, IrOp b, IrOp c, IrOp d, IrOp e, IrOp f, IrOp g);
|
||||
|
||||
IrOp block(IrBlockKind kind); // Requested kind can be ignored if we are in an outlined sequence
|
||||
IrOp blockAtInst(uint32_t index);
|
||||
|
@ -31,7 +31,7 @@ enum
|
||||
// * Rn - VM stack register slot, n in 0..254
|
||||
// * Kn - VM proto constant slot, n in 0..2^23-1
|
||||
// * UPn - VM function upvalue slot, n in 0..199
|
||||
// * A, B, C, D, E are instruction arguments
|
||||
// * A, B, C, D, E, F, G are instruction arguments
|
||||
enum class IrCmd : uint8_t
|
||||
{
|
||||
NOP,
|
||||
@ -869,6 +869,7 @@ struct IrInst
|
||||
IrOp d;
|
||||
IrOp e;
|
||||
IrOp f;
|
||||
IrOp g;
|
||||
|
||||
uint32_t lastUse = 0;
|
||||
uint16_t useCount = 0;
|
||||
@ -923,6 +924,7 @@ struct IrInstHash
|
||||
h = mix(h, key.d);
|
||||
h = mix(h, key.e);
|
||||
h = mix(h, key.f);
|
||||
h = mix(h, key.g);
|
||||
|
||||
// MurmurHash2 tail
|
||||
h ^= h >> 13;
|
||||
@ -937,7 +939,7 @@ struct IrInstEq
|
||||
{
|
||||
bool operator()(const IrInst& a, const IrInst& b) const
|
||||
{
|
||||
return a.cmd == b.cmd && a.a == b.a && a.b == b.b && a.c == b.c && a.d == b.d && a.e == b.e && a.f == b.f;
|
||||
return a.cmd == b.cmd && a.a == b.a && a.b == b.b && a.c == b.c && a.d == b.d && a.e == b.e && a.f == b.f && a.g == b.g;
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -228,6 +228,7 @@ static void visitVmRegDefsUses(T& visitor, IrFunction& function, const IrInst& i
|
||||
CODEGEN_ASSERT(inst.d.kind != IrOpKind::VmReg);
|
||||
CODEGEN_ASSERT(inst.e.kind != IrOpKind::VmReg);
|
||||
CODEGEN_ASSERT(inst.f.kind != IrOpKind::VmReg);
|
||||
CODEGEN_ASSERT(inst.g.kind != IrOpKind::VmReg);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -8,6 +8,8 @@
|
||||
#include "lobject.h"
|
||||
#include "lstate.h"
|
||||
|
||||
LUAU_FASTFLAG(LuauNativeAttribute)
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
namespace CodeGen
|
||||
@ -56,7 +58,10 @@ std::vector<FunctionBytecodeSummary> summarizeBytecode(lua_State* L, int idx, un
|
||||
Proto* root = clvalue(func)->l.p;
|
||||
|
||||
std::vector<Proto*> protos;
|
||||
gatherFunctions(protos, root, CodeGen_ColdFunctions);
|
||||
if (FFlag::LuauNativeAttribute)
|
||||
gatherFunctions(protos, root, CodeGen_ColdFunctions, root->flags & LPF_NATIVE_FUNCTION);
|
||||
else
|
||||
gatherFunctions_DEPRECATED(protos, root, CodeGen_ColdFunctions);
|
||||
|
||||
std::vector<FunctionBytecodeSummary> summaries;
|
||||
summaries.reserve(protos.size());
|
||||
|
@ -14,6 +14,7 @@
|
||||
|
||||
LUAU_FASTFLAG(LuauCodegenTypeInfo)
|
||||
LUAU_FASTFLAG(LuauLoadUserdataInfo)
|
||||
LUAU_FASTFLAG(LuauNativeAttribute)
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
@ -200,7 +201,10 @@ static std::string getAssemblyImpl(AssemblyBuilder& build, const TValue* func, A
|
||||
return std::string();
|
||||
|
||||
std::vector<Proto*> protos;
|
||||
gatherFunctions(protos, root, options.compilationOptions.flags);
|
||||
if (FFlag::LuauNativeAttribute)
|
||||
gatherFunctions(protos, root, options.compilationOptions.flags, root->flags & LPF_NATIVE_FUNCTION);
|
||||
else
|
||||
gatherFunctions_DEPRECATED(protos, root, options.compilationOptions.flags);
|
||||
|
||||
protos.erase(std::remove_if(protos.begin(), protos.end(),
|
||||
[](Proto* p) {
|
||||
|
@ -16,6 +16,7 @@ LUAU_FASTFLAGVARIABLE(LuauCodegenCheckNullContext, false)
|
||||
|
||||
LUAU_FASTINTVARIABLE(LuauCodeGenBlockSize, 4 * 1024 * 1024)
|
||||
LUAU_FASTINTVARIABLE(LuauCodeGenMaxTotalSize, 256 * 1024 * 1024)
|
||||
LUAU_FASTFLAG(LuauNativeAttribute)
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
@ -455,7 +456,7 @@ template<typename AssemblyBuilder>
|
||||
|
||||
Proto* root = clvalue(func)->l.p;
|
||||
|
||||
if ((options.flags & CodeGen_OnlyNativeModules) != 0 && (root->flags & LPF_NATIVE_MODULE) == 0)
|
||||
if ((options.flags & CodeGen_OnlyNativeModules) != 0 && (root->flags & LPF_NATIVE_MODULE) == 0 && (root->flags & LPF_NATIVE_FUNCTION) == 0)
|
||||
return CompilationResult{CodeGenCompilationResult::NotNativeModule};
|
||||
|
||||
BaseCodeGenContext* codeGenContext = getCodeGenContext(L);
|
||||
@ -463,7 +464,10 @@ template<typename AssemblyBuilder>
|
||||
return CompilationResult{CodeGenCompilationResult::CodeGenNotInitialized};
|
||||
|
||||
std::vector<Proto*> protos;
|
||||
gatherFunctions(protos, root, options.flags);
|
||||
if (FFlag::LuauNativeAttribute)
|
||||
gatherFunctions(protos, root, options.flags, root->flags & LPF_NATIVE_FUNCTION);
|
||||
else
|
||||
gatherFunctions_DEPRECATED(protos, root, options.flags);
|
||||
|
||||
// Skip protos that have been compiled during previous invocations of CodeGen::compile
|
||||
protos.erase(std::remove_if(protos.begin(), protos.end(),
|
||||
|
@ -29,13 +29,14 @@ LUAU_FASTINT(CodegenHeuristicsBlockLimit)
|
||||
LUAU_FASTINT(CodegenHeuristicsBlockInstructionLimit)
|
||||
LUAU_FASTFLAG(LuauCodegenRemoveDeadStores5)
|
||||
LUAU_FASTFLAG(LuauLoadUserdataInfo)
|
||||
LUAU_FASTFLAG(LuauNativeAttribute)
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
namespace CodeGen
|
||||
{
|
||||
|
||||
inline void gatherFunctions(std::vector<Proto*>& results, Proto* proto, unsigned int flags)
|
||||
inline void gatherFunctions_DEPRECATED(std::vector<Proto*>& results, Proto* proto, unsigned int flags)
|
||||
{
|
||||
if (results.size() <= size_t(proto->bytecodeid))
|
||||
results.resize(proto->bytecodeid + 1);
|
||||
@ -50,7 +51,36 @@ inline void gatherFunctions(std::vector<Proto*>& results, Proto* proto, unsigned
|
||||
|
||||
// Recursively traverse child protos even if we aren't compiling this one
|
||||
for (int i = 0; i < proto->sizep; i++)
|
||||
gatherFunctions(results, proto->p[i], flags);
|
||||
gatherFunctions_DEPRECATED(results, proto->p[i], flags);
|
||||
}
|
||||
|
||||
inline void gatherFunctionsHelper(
|
||||
std::vector<Proto*>& results, Proto* proto, const unsigned int flags, const bool hasNativeFunctions, const bool root)
|
||||
{
|
||||
if (results.size() <= size_t(proto->bytecodeid))
|
||||
results.resize(proto->bytecodeid + 1);
|
||||
|
||||
// Skip protos that we've already compiled in this run: this happens because at -O2, inlined functions get their protos reused
|
||||
if (results[proto->bytecodeid])
|
||||
return;
|
||||
|
||||
// if native module, compile cold functions if requested
|
||||
// if not native module, compile function if it has native attribute and is not root
|
||||
bool shouldGather = hasNativeFunctions ? (!root && (proto->flags & LPF_NATIVE_FUNCTION) != 0)
|
||||
: ((proto->flags & LPF_NATIVE_COLD) == 0 || (flags & CodeGen_ColdFunctions) != 0);
|
||||
|
||||
if (shouldGather)
|
||||
results[proto->bytecodeid] = proto;
|
||||
|
||||
// Recursively traverse child protos even if we aren't compiling this one
|
||||
for (int i = 0; i < proto->sizep; i++)
|
||||
gatherFunctionsHelper(results, proto->p[i], flags, hasNativeFunctions, false);
|
||||
}
|
||||
|
||||
inline void gatherFunctions(std::vector<Proto*>& results, Proto* root, const unsigned int flags, const bool hasNativeFunctions = false)
|
||||
{
|
||||
LUAU_ASSERT(FFlag::LuauNativeAttribute);
|
||||
gatherFunctionsHelper(results, root, flags, hasNativeFunctions, true);
|
||||
}
|
||||
|
||||
inline unsigned getInstructionCount(const std::vector<IrInst>& instructions, IrCmd cmd)
|
||||
|
@ -13,6 +13,8 @@
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
LUAU_FASTFLAGVARIABLE(LuauCodegenInstG, false)
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
namespace CodeGen
|
||||
@ -52,6 +54,9 @@ void updateUseCounts(IrFunction& function)
|
||||
checkOp(inst.d);
|
||||
checkOp(inst.e);
|
||||
checkOp(inst.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
checkOp(inst.g);
|
||||
}
|
||||
}
|
||||
|
||||
@ -95,6 +100,9 @@ void updateLastUseLocations(IrFunction& function, const std::vector<uint32_t>& s
|
||||
checkOp(inst.d);
|
||||
checkOp(inst.e);
|
||||
checkOp(inst.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
checkOp(inst.g);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -128,6 +136,12 @@ uint32_t getNextInstUse(IrFunction& function, uint32_t targetInstIdx, uint32_t s
|
||||
|
||||
if (inst.f.kind == IrOpKind::Inst && inst.f.index == targetInstIdx)
|
||||
return i;
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
{
|
||||
if (inst.g.kind == IrOpKind::Inst && inst.g.index == targetInstIdx)
|
||||
return i;
|
||||
}
|
||||
}
|
||||
|
||||
// There must be a next use since there is the last use location
|
||||
@ -165,6 +179,9 @@ std::pair<uint32_t, uint32_t> getLiveInOutValueCount(IrFunction& function, IrBlo
|
||||
checkOp(inst.d);
|
||||
checkOp(inst.e);
|
||||
checkOp(inst.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
checkOp(inst.g);
|
||||
}
|
||||
|
||||
return std::make_pair(liveIns, liveOuts);
|
||||
@ -488,6 +505,9 @@ static void computeCfgBlockEdges(IrFunction& function)
|
||||
checkOp(inst.d);
|
||||
checkOp(inst.e);
|
||||
checkOp(inst.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
checkOp(inst.g);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -16,6 +16,7 @@
|
||||
LUAU_FASTFLAG(LuauLoadTypeInfo) // Because new VM typeinfo load changes the format used by Codegen, same flag is used
|
||||
LUAU_FASTFLAG(LuauCodegenAnalyzeHostVectorOps)
|
||||
LUAU_FASTFLAG(LuauLoadUserdataInfo)
|
||||
LUAU_FASTFLAG(LuauCodegenInstG)
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
@ -741,6 +742,9 @@ void IrBuilder::clone(const IrBlock& source, bool removeCurrentTerminator)
|
||||
redirect(clone.e);
|
||||
redirect(clone.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
redirect(clone.g);
|
||||
|
||||
addUse(function, clone.a);
|
||||
addUse(function, clone.b);
|
||||
addUse(function, clone.c);
|
||||
@ -748,11 +752,17 @@ void IrBuilder::clone(const IrBlock& source, bool removeCurrentTerminator)
|
||||
addUse(function, clone.e);
|
||||
addUse(function, clone.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
addUse(function, clone.g);
|
||||
|
||||
// Instructions that referenced the original will have to be adjusted to use the clone
|
||||
instRedir[index] = uint32_t(function.instructions.size());
|
||||
|
||||
// Reconstruct the fresh clone
|
||||
inst(clone.cmd, clone.a, clone.b, clone.c, clone.d, clone.e, clone.f);
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
inst(clone.cmd, clone.a, clone.b, clone.c, clone.d, clone.e, clone.f, clone.g);
|
||||
else
|
||||
inst(clone.cmd, clone.a, clone.b, clone.c, clone.d, clone.e, clone.f);
|
||||
}
|
||||
}
|
||||
|
||||
@ -850,8 +860,33 @@ IrOp IrBuilder::inst(IrCmd cmd, IrOp a, IrOp b, IrOp c, IrOp d, IrOp e)
|
||||
|
||||
IrOp IrBuilder::inst(IrCmd cmd, IrOp a, IrOp b, IrOp c, IrOp d, IrOp e, IrOp f)
|
||||
{
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
{
|
||||
return inst(cmd, a, b, c, d, e, f, {});
|
||||
}
|
||||
else
|
||||
{
|
||||
uint32_t index = uint32_t(function.instructions.size());
|
||||
function.instructions.push_back({cmd, a, b, c, d, e, f});
|
||||
|
||||
CODEGEN_ASSERT(!inTerminatedBlock);
|
||||
|
||||
if (isBlockTerminator(cmd))
|
||||
{
|
||||
function.blocks[activeBlockIdx].finish = index;
|
||||
inTerminatedBlock = true;
|
||||
}
|
||||
|
||||
return {IrOpKind::Inst, index};
|
||||
}
|
||||
}
|
||||
|
||||
IrOp IrBuilder::inst(IrCmd cmd, IrOp a, IrOp b, IrOp c, IrOp d, IrOp e, IrOp f, IrOp g)
|
||||
{
|
||||
CODEGEN_ASSERT(FFlag::LuauCodegenInstG);
|
||||
|
||||
uint32_t index = uint32_t(function.instructions.size());
|
||||
function.instructions.push_back({cmd, a, b, c, d, e, f});
|
||||
function.instructions.push_back({cmd, a, b, c, d, e, f, g});
|
||||
|
||||
CODEGEN_ASSERT(!inTerminatedBlock);
|
||||
|
||||
|
@ -8,6 +8,7 @@
|
||||
#include <stdarg.h>
|
||||
|
||||
LUAU_FASTFLAG(LuauLoadUserdataInfo)
|
||||
LUAU_FASTFLAG(LuauCodegenInstG)
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
@ -417,6 +418,9 @@ void toString(IrToStringContext& ctx, const IrInst& inst, uint32_t index)
|
||||
checkOp(inst.d, ", ");
|
||||
checkOp(inst.e, ", ");
|
||||
checkOp(inst.f, ", ");
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
checkOp(inst.g, ", ");
|
||||
}
|
||||
|
||||
void toString(IrToStringContext& ctx, const IrBlock& block, uint32_t index)
|
||||
@ -656,6 +660,8 @@ static RegisterSet getJumpTargetExtraLiveIn(IrToStringContext& ctx, const IrBloc
|
||||
op = inst.e;
|
||||
else if (inst.f.kind == IrOpKind::Block)
|
||||
op = inst.f;
|
||||
else if (FFlag::LuauCodegenInstG && inst.g.kind == IrOpKind::Block)
|
||||
op = inst.g;
|
||||
|
||||
if (op.kind == IrOpKind::Block && op.index < ctx.cfg.in.size())
|
||||
{
|
||||
@ -940,6 +946,9 @@ std::string toDot(const IrFunction& function, bool includeInst)
|
||||
checkOp(inst.d);
|
||||
checkOp(inst.e);
|
||||
checkOp(inst.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
checkOp(inst.g);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -11,6 +11,7 @@
|
||||
#include <string.h>
|
||||
|
||||
LUAU_FASTFLAGVARIABLE(DebugCodegenChaosA64, false)
|
||||
LUAU_FASTFLAG(LuauCodegenInstG)
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
@ -256,6 +257,9 @@ void IrRegAllocA64::freeLastUseRegs(const IrInst& inst, uint32_t index)
|
||||
checkOp(inst.d);
|
||||
checkOp(inst.e);
|
||||
checkOp(inst.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
checkOp(inst.g);
|
||||
}
|
||||
|
||||
void IrRegAllocA64::freeTempRegs()
|
||||
|
@ -6,6 +6,8 @@
|
||||
|
||||
#include "EmitCommonX64.h"
|
||||
|
||||
LUAU_FASTFLAG(LuauCodegenInstG)
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
namespace CodeGen
|
||||
@ -181,6 +183,9 @@ void IrRegAllocX64::freeLastUseRegs(const IrInst& inst, uint32_t instIdx)
|
||||
checkOp(inst.d);
|
||||
checkOp(inst.e);
|
||||
checkOp(inst.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
checkOp(inst.g);
|
||||
}
|
||||
|
||||
bool IrRegAllocX64::isLastUseReg(const IrInst& target, uint32_t instIdx) const
|
||||
|
@ -12,6 +12,8 @@
|
||||
#include <limits.h>
|
||||
#include <math.h>
|
||||
|
||||
LUAU_FASTFLAG(LuauCodegenInstG)
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
namespace CodeGen
|
||||
@ -315,12 +317,18 @@ void kill(IrFunction& function, IrInst& inst)
|
||||
removeUse(function, inst.e);
|
||||
removeUse(function, inst.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
removeUse(function, inst.g);
|
||||
|
||||
inst.a = {};
|
||||
inst.b = {};
|
||||
inst.c = {};
|
||||
inst.d = {};
|
||||
inst.e = {};
|
||||
inst.f = {};
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
inst.g = {};
|
||||
}
|
||||
|
||||
void kill(IrFunction& function, uint32_t start, uint32_t end)
|
||||
@ -370,6 +378,9 @@ void replace(IrFunction& function, IrBlock& block, uint32_t instIdx, IrInst repl
|
||||
addUse(function, replacement.e);
|
||||
addUse(function, replacement.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
addUse(function, replacement.g);
|
||||
|
||||
// An extra reference is added so block will not remove itself
|
||||
block.useCount++;
|
||||
|
||||
@ -392,6 +403,9 @@ void replace(IrFunction& function, IrBlock& block, uint32_t instIdx, IrInst repl
|
||||
removeUse(function, inst.e);
|
||||
removeUse(function, inst.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
removeUse(function, inst.g);
|
||||
|
||||
// Inherit existing use count (last use is skipped as it will be defined later)
|
||||
replacement.useCount = inst.useCount;
|
||||
|
||||
@ -417,12 +431,18 @@ void substitute(IrFunction& function, IrInst& inst, IrOp replacement)
|
||||
removeUse(function, inst.e);
|
||||
removeUse(function, inst.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
removeUse(function, inst.g);
|
||||
|
||||
inst.a = replacement;
|
||||
inst.b = {};
|
||||
inst.c = {};
|
||||
inst.d = {};
|
||||
inst.e = {};
|
||||
inst.f = {};
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
inst.g = {};
|
||||
}
|
||||
|
||||
void applySubstitutions(IrFunction& function, IrOp& op)
|
||||
@ -466,6 +486,9 @@ void applySubstitutions(IrFunction& function, IrInst& inst)
|
||||
applySubstitutions(function, inst.d);
|
||||
applySubstitutions(function, inst.e);
|
||||
applySubstitutions(function, inst.f);
|
||||
|
||||
if (FFlag::LuauCodegenInstG)
|
||||
applySubstitutions(function, inst.g);
|
||||
}
|
||||
|
||||
bool compare(double a, double b, IrCondition cond)
|
||||
|
@ -146,6 +146,7 @@ void IrValueLocationTracking::beforeInstLowering(IrInst& inst)
|
||||
CODEGEN_ASSERT(inst.d.kind != IrOpKind::VmReg);
|
||||
CODEGEN_ASSERT(inst.e.kind != IrOpKind::VmReg);
|
||||
CODEGEN_ASSERT(inst.f.kind != IrOpKind::VmReg);
|
||||
CODEGEN_ASSERT(inst.g.kind != IrOpKind::VmReg);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -612,4 +612,6 @@ enum LuauProtoFlag
|
||||
LPF_NATIVE_MODULE = 1 << 0,
|
||||
// used to tag individual protos as not profitable to compile natively
|
||||
LPF_NATIVE_COLD = 1 << 1,
|
||||
// used to tag main proto for modules that have at least one function with native attribute
|
||||
LPF_NATIVE_FUNCTION = 1 << 2,
|
||||
};
|
||||
|
@ -30,6 +30,8 @@ LUAU_FASTFLAG(LuauCompileTypeInfo)
|
||||
LUAU_FASTFLAGVARIABLE(LuauCompileTempTypeInfo, false)
|
||||
LUAU_FASTFLAGVARIABLE(LuauCompileUserdataInfo, false)
|
||||
|
||||
LUAU_FASTFLAG(LuauNativeAttribute)
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
|
||||
@ -195,7 +197,7 @@ struct Compiler
|
||||
return node->as<AstExprFunction>();
|
||||
}
|
||||
|
||||
uint32_t compileFunction(AstExprFunction* func, uint8_t protoflags)
|
||||
uint32_t compileFunction(AstExprFunction* func, uint8_t& protoflags)
|
||||
{
|
||||
LUAU_TIMETRACE_SCOPE("Compiler::compileFunction", "Compiler");
|
||||
|
||||
@ -297,6 +299,9 @@ struct Compiler
|
||||
if (func->functionDepth == 0 && !hasLoops)
|
||||
protoflags |= LPF_NATIVE_COLD;
|
||||
|
||||
if (FFlag::LuauNativeAttribute && func->hasNativeAttribute())
|
||||
protoflags |= LPF_NATIVE_FUNCTION;
|
||||
|
||||
bytecode.endFunction(uint8_t(stackSize), uint8_t(upvals.size()), protoflags);
|
||||
|
||||
Function& f = functions[func];
|
||||
@ -3863,13 +3868,12 @@ struct Compiler
|
||||
|
||||
struct FunctionVisitor : AstVisitor
|
||||
{
|
||||
Compiler* self;
|
||||
std::vector<AstExprFunction*>& functions;
|
||||
bool hasTypes = false;
|
||||
bool hasNativeFunction = false;
|
||||
|
||||
FunctionVisitor(Compiler* self, std::vector<AstExprFunction*>& functions)
|
||||
: self(self)
|
||||
, functions(functions)
|
||||
FunctionVisitor(std::vector<AstExprFunction*>& functions)
|
||||
: functions(functions)
|
||||
{
|
||||
// preallocate the result; this works around std::vector's inefficient growth policy for small arrays
|
||||
functions.reserve(16);
|
||||
@ -3885,6 +3889,9 @@ struct Compiler
|
||||
// this makes sure all functions that are used when compiling this one have been already added to the vector
|
||||
functions.push_back(node);
|
||||
|
||||
if (FFlag::LuauNativeAttribute && !hasNativeFunction && node->hasNativeAttribute())
|
||||
hasNativeFunction = true;
|
||||
|
||||
return false;
|
||||
}
|
||||
};
|
||||
@ -4117,6 +4124,14 @@ struct Compiler
|
||||
std::vector<std::unique_ptr<char[]>> interpStrings;
|
||||
};
|
||||
|
||||
static void setCompileOptionsForNativeCompilation(CompileOptions& options)
|
||||
{
|
||||
options.optimizationLevel = 2; // note: this might be removed in the future in favor of --!optimize
|
||||
|
||||
if (FFlag::LuauCompileTypeInfo)
|
||||
options.typeInfoLevel = 1;
|
||||
}
|
||||
|
||||
void compileOrThrow(BytecodeBuilder& bytecode, const ParseResult& parseResult, const AstNameTable& names, const CompileOptions& inputOptions)
|
||||
{
|
||||
LUAU_TIMETRACE_SCOPE("compileOrThrow", "Compiler");
|
||||
@ -4135,15 +4150,21 @@ void compileOrThrow(BytecodeBuilder& bytecode, const ParseResult& parseResult, c
|
||||
if (hc.header && hc.content == "native")
|
||||
{
|
||||
mainFlags |= LPF_NATIVE_MODULE;
|
||||
options.optimizationLevel = 2; // note: this might be removed in the future in favor of --!optimize
|
||||
|
||||
if (FFlag::LuauCompileTypeInfo)
|
||||
options.typeInfoLevel = 1;
|
||||
setCompileOptionsForNativeCompilation(options);
|
||||
}
|
||||
}
|
||||
|
||||
AstStatBlock* root = parseResult.root;
|
||||
|
||||
// gathers all functions with the invariant that all function references are to functions earlier in the list
|
||||
// for example, function foo() return function() end end will result in two vector entries, [0] = anonymous and [1] = foo
|
||||
std::vector<AstExprFunction*> functions;
|
||||
Compiler::FunctionVisitor functionVisitor(functions);
|
||||
root->visit(&functionVisitor);
|
||||
|
||||
if (functionVisitor.hasNativeFunction)
|
||||
setCompileOptionsForNativeCompilation(options);
|
||||
|
||||
Compiler compiler(bytecode, options);
|
||||
|
||||
// since access to some global objects may result in values that change over time, we block imports from non-readonly tables
|
||||
@ -4180,12 +4201,6 @@ void compileOrThrow(BytecodeBuilder& bytecode, const ParseResult& parseResult, c
|
||||
predictTableShapes(compiler.tableShapes, root);
|
||||
}
|
||||
|
||||
// gathers all functions with the invariant that all function references are to functions earlier in the list
|
||||
// for example, function foo() return function() end end will result in two vector entries, [0] = anonymous and [1] = foo
|
||||
std::vector<AstExprFunction*> functions;
|
||||
Compiler::FunctionVisitor functionVisitor(&compiler, functions);
|
||||
root->visit(&functionVisitor);
|
||||
|
||||
if (FFlag::LuauCompileUserdataInfo)
|
||||
{
|
||||
if (const char* const* ptr = options.userdataTypes)
|
||||
@ -4217,7 +4232,15 @@ void compileOrThrow(BytecodeBuilder& bytecode, const ParseResult& parseResult, c
|
||||
}
|
||||
|
||||
for (AstExprFunction* expr : functions)
|
||||
compiler.compileFunction(expr, 0);
|
||||
{
|
||||
uint8_t protoflags = 0;
|
||||
compiler.compileFunction(expr, protoflags);
|
||||
|
||||
// If a function has native attribute and the whole module is not native, we set LPF_NATIVE_FUNCTION flag
|
||||
// This ensures that LPF_NATIVE_MODULE and LPF_NATIVE_FUNCTION are exclusive.
|
||||
if (FFlag::LuauNativeAttribute && (protoflags & LPF_NATIVE_FUNCTION) && !(mainFlags & LPF_NATIVE_MODULE))
|
||||
mainFlags |= LPF_NATIVE_FUNCTION;
|
||||
}
|
||||
|
||||
AstExprFunction main(root->location, /*attributes=*/AstArray<AstAttr*>({nullptr, 0}), /*generics= */ AstArray<AstGenericType>(),
|
||||
/*genericPacks= */ AstArray<AstGenericTypePack>(),
|
||||
|
@ -23,11 +23,10 @@
|
||||
#define GCSsweep 4
|
||||
|
||||
/*
|
||||
** macro to tell when main invariant (white objects cannot point to black
|
||||
** ones) must be kept. During a collection, the sweep
|
||||
** phase may break the invariant, as objects turned white may point to
|
||||
** still-black objects. The invariant is restored when sweep ends and
|
||||
** all objects are white again.
|
||||
** The main invariant of the garbage collector, while marking objects,
|
||||
** is that a black object can never point to a white one. This invariant
|
||||
** is not being enforced during a sweep phase, and is restored when sweep
|
||||
** ends.
|
||||
*/
|
||||
#define keepinvariant(g) ((g)->gcstate == GCSpropagate || (g)->gcstate == GCSpropagateagain || (g)->gcstate == GCSatomic)
|
||||
|
||||
|
@ -34,6 +34,8 @@ void luaC_validate(lua_State* L);
|
||||
LUAU_FASTFLAG(DebugLuauAbortingChecks)
|
||||
LUAU_FASTINT(CodegenHeuristicsInstructionLimit)
|
||||
LUAU_FASTFLAG(LuauCodegenFixSplitStoreConstMismatch)
|
||||
LUAU_FASTFLAG(LuauAttributeSyntax)
|
||||
LUAU_FASTFLAG(LuauNativeAttribute)
|
||||
|
||||
static lua_CompileOptions defaultOptions()
|
||||
{
|
||||
@ -2707,4 +2709,57 @@ end
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}));
|
||||
}
|
||||
|
||||
TEST_CASE("NativeAttribute")
|
||||
{
|
||||
if (!codegen || !luau_codegen_supported())
|
||||
return;
|
||||
|
||||
ScopedFastFlag sffs[] = {{FFlag::LuauAttributeSyntax, true}, {FFlag::LuauNativeAttribute, true}};
|
||||
|
||||
std::string source = R"R(
|
||||
@native
|
||||
local function sum(x, y)
|
||||
local function sumHelper(z)
|
||||
return (x+y+z)
|
||||
end
|
||||
return sumHelper
|
||||
end
|
||||
|
||||
local function sub(x, y)
|
||||
@native
|
||||
local function subHelper(z)
|
||||
return (x+y-z)
|
||||
end
|
||||
return subHelper
|
||||
end)R";
|
||||
|
||||
StateRef globalState(luaL_newstate(), lua_close);
|
||||
lua_State* L = globalState.get();
|
||||
|
||||
luau_codegen_create(L);
|
||||
|
||||
luaL_openlibs(L);
|
||||
luaL_sandbox(L);
|
||||
luaL_sandboxthread(L);
|
||||
|
||||
size_t bytecodeSize = 0;
|
||||
char* bytecode = luau_compile(source.data(), source.size(), nullptr, &bytecodeSize);
|
||||
int result = luau_load(L, "=Code", bytecode, bytecodeSize, 0);
|
||||
free(bytecode);
|
||||
|
||||
REQUIRE(result == 0);
|
||||
|
||||
Luau::CodeGen::CompilationOptions nativeOptions{Luau::CodeGen::CodeGen_ColdFunctions};
|
||||
Luau::CodeGen::CompilationStats nativeStats = {};
|
||||
Luau::CodeGen::CompilationResult nativeResult = Luau::CodeGen::compile(L, -1, nativeOptions, &nativeStats);
|
||||
|
||||
CHECK(nativeResult.result == Luau::CodeGen::CodeGenCompilationResult::Success);
|
||||
|
||||
CHECK(!nativeResult.hasErrors());
|
||||
REQUIRE(nativeResult.protoFailures.empty());
|
||||
|
||||
// We should be able to compile at least one of our functions
|
||||
CHECK_EQ(nativeStats.functionsCompiled, 2);
|
||||
}
|
||||
|
||||
TEST_SUITE_END();
|
||||
|
@ -21,14 +21,18 @@ struct GeneralizationFixture
|
||||
{
|
||||
TypeArena arena;
|
||||
BuiltinTypes builtinTypes;
|
||||
Scope scope{builtinTypes.anyTypePack};
|
||||
ScopePtr globalScope = std::make_shared<Scope>(builtinTypes.anyTypePack);
|
||||
ScopePtr scope = std::make_shared<Scope>(globalScope);
|
||||
ToStringOptions opts;
|
||||
|
||||
DenseHashSet<TypeId> generalizedTypes_{nullptr};
|
||||
NotNull<DenseHashSet<TypeId>> generalizedTypes{&generalizedTypes_};
|
||||
|
||||
ScopedFastFlag sff{FFlag::DebugLuauDeferredConstraintResolution, true};
|
||||
|
||||
std::pair<TypeId, FreeType*> freshType()
|
||||
{
|
||||
FreeType ft{&scope, builtinTypes.neverType, builtinTypes.unknownType};
|
||||
FreeType ft{scope.get(), builtinTypes.neverType, builtinTypes.unknownType};
|
||||
|
||||
TypeId ty = arena.addType(ft);
|
||||
FreeType* ftv = getMutable<FreeType>(ty);
|
||||
@ -49,7 +53,7 @@ struct GeneralizationFixture
|
||||
|
||||
std::optional<TypeId> generalize(TypeId ty)
|
||||
{
|
||||
return ::Luau::generalize(NotNull{&arena}, NotNull{&builtinTypes}, NotNull{&scope}, ty);
|
||||
return ::Luau::generalize(NotNull{&arena}, NotNull{&builtinTypes}, NotNull{scope.get()}, generalizedTypes, ty);
|
||||
}
|
||||
};
|
||||
|
||||
@ -116,4 +120,71 @@ TEST_CASE_FIXTURE(GeneralizationFixture, "dont_traverse_into_class_types_when_ge
|
||||
CHECK(is<FreeType>(*genPropTy));
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(GeneralizationFixture, "cache_fully_generalized_types")
|
||||
{
|
||||
CHECK(generalizedTypes->empty());
|
||||
|
||||
TypeId tinyTable = arena.addType(TableType{
|
||||
TableType::Props{{"one", builtinTypes.numberType}, {"two", builtinTypes.stringType}},
|
||||
std::nullopt,
|
||||
TypeLevel{},
|
||||
TableState::Sealed
|
||||
});
|
||||
|
||||
generalize(tinyTable);
|
||||
|
||||
CHECK(generalizedTypes->contains(tinyTable));
|
||||
CHECK(generalizedTypes->contains(builtinTypes.numberType));
|
||||
CHECK(generalizedTypes->contains(builtinTypes.stringType));
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(GeneralizationFixture, "dont_cache_types_that_arent_done_yet")
|
||||
{
|
||||
TypeId freeTy = arena.addType(FreeType{NotNull{globalScope.get()}, builtinTypes.neverType, builtinTypes.stringType});
|
||||
|
||||
TypeId fnTy = arena.addType(FunctionType{
|
||||
builtinTypes.emptyTypePack,
|
||||
arena.addTypePack(TypePack{{builtinTypes.numberType}})
|
||||
});
|
||||
|
||||
TypeId tableTy = arena.addType(TableType{
|
||||
TableType::Props{{"one", builtinTypes.numberType}, {"two", freeTy}, {"three", fnTy}},
|
||||
std::nullopt,
|
||||
TypeLevel{},
|
||||
TableState::Sealed
|
||||
});
|
||||
|
||||
generalize(tableTy);
|
||||
|
||||
CHECK(generalizedTypes->contains(fnTy));
|
||||
CHECK(generalizedTypes->contains(builtinTypes.numberType));
|
||||
CHECK(generalizedTypes->contains(builtinTypes.neverType));
|
||||
CHECK(generalizedTypes->contains(builtinTypes.stringType));
|
||||
CHECK(!generalizedTypes->contains(freeTy));
|
||||
CHECK(!generalizedTypes->contains(tableTy));
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(GeneralizationFixture, "functions_containing_cyclic_tables_can_be_cached")
|
||||
{
|
||||
TypeId selfTy = arena.addType(BlockedType{});
|
||||
|
||||
TypeId methodTy = arena.addType(FunctionType{
|
||||
arena.addTypePack({selfTy}),
|
||||
arena.addTypePack({builtinTypes.numberType}),
|
||||
});
|
||||
|
||||
asMutable(selfTy)->ty.emplace<TableType>(
|
||||
TableType::Props{{"count", builtinTypes.numberType}, {"method", methodTy}},
|
||||
std::nullopt,
|
||||
TypeLevel{},
|
||||
TableState::Sealed
|
||||
);
|
||||
|
||||
generalize(methodTy);
|
||||
|
||||
CHECK(generalizedTypes->contains(methodTy));
|
||||
CHECK(generalizedTypes->contains(selfTy));
|
||||
CHECK(generalizedTypes->contains(builtinTypes.numberType));
|
||||
}
|
||||
|
||||
TEST_SUITE_END();
|
||||
|
@ -12,7 +12,6 @@
|
||||
|
||||
LUAU_FASTFLAG(DebugLuauDeferredConstraintResolution)
|
||||
LUAU_FASTFLAG(LuauNormalizeNotUnknownIntersection)
|
||||
LUAU_FASTFLAG(LuauFixCyclicUnionsOfIntersections);
|
||||
LUAU_FASTINT(LuauTypeInferRecursionLimit)
|
||||
using namespace Luau;
|
||||
|
||||
@ -799,8 +798,6 @@ TEST_CASE_FIXTURE(NormalizeFixture, "cyclic_union")
|
||||
|
||||
TEST_CASE_FIXTURE(NormalizeFixture, "cyclic_union_of_intersection")
|
||||
{
|
||||
ScopedFastFlag sff{FFlag::LuauFixCyclicUnionsOfIntersections, true};
|
||||
|
||||
// t1 where t1 = (string & t1) | string
|
||||
TypeId boundTy = arena.addType(BlockedType{});
|
||||
TypeId intersectTy = arena.addType(IntersectionType{{builtinTypes->stringType, boundTy}});
|
||||
@ -814,8 +811,6 @@ TEST_CASE_FIXTURE(NormalizeFixture, "cyclic_union_of_intersection")
|
||||
|
||||
TEST_CASE_FIXTURE(NormalizeFixture, "cyclic_intersection_of_unions")
|
||||
{
|
||||
ScopedFastFlag sff{FFlag::LuauFixCyclicUnionsOfIntersections, true};
|
||||
|
||||
// t1 where t1 = (string & t1) | string
|
||||
TypeId boundTy = arena.addType(BlockedType{});
|
||||
TypeId unionTy = arena.addType(UnionType{{builtinTypes->stringType, boundTy}});
|
||||
|
@ -17,7 +17,8 @@ LUAU_FASTINT(LuauTypeLengthLimit);
|
||||
LUAU_FASTINT(LuauParseErrorLimit);
|
||||
LUAU_FASTFLAG(DebugLuauDeferredConstraintResolution);
|
||||
LUAU_FASTFLAG(LuauAttributeSyntax);
|
||||
LUAU_FASTFLAG(LuauLeadingBarAndAmpersand);
|
||||
LUAU_FASTFLAG(LuauLeadingBarAndAmpersand2);
|
||||
LUAU_FASTFLAG(LuauAttributeSyntaxFunExpr);
|
||||
|
||||
namespace
|
||||
{
|
||||
@ -3212,6 +3213,45 @@ end)");
|
||||
checkAttribute(attributes.data[0], AstAttr::Type::Checked, Location(Position(1, 0), Position(1, 8)));
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "parse_attribute_for_function_expression")
|
||||
{
|
||||
ScopedFastFlag sff[] = {{FFlag::LuauAttributeSyntax, true}, {FFlag::LuauAttributeSyntaxFunExpr, true}};
|
||||
|
||||
AstStatBlock* stat1 = parse(R"(
|
||||
local function invoker(f)
|
||||
return f(1)
|
||||
end
|
||||
|
||||
invoker(@checked function(x) return (x + 2) end)
|
||||
)");
|
||||
|
||||
LUAU_ASSERT(stat1 != nullptr);
|
||||
|
||||
AstExprFunction* func1 = stat1->body.data[1]->as<AstStatExpr>()->expr->as<AstExprCall>()->args.data[0]->as<AstExprFunction>();
|
||||
LUAU_ASSERT(func1 != nullptr);
|
||||
|
||||
AstArray<AstAttr*> attributes1 = func1->attributes;
|
||||
|
||||
CHECK_EQ(attributes1.size, 1);
|
||||
|
||||
checkAttribute(attributes1.data[0], AstAttr::Type::Checked, Location(Position(5, 8), Position(5, 16)));
|
||||
|
||||
AstStatBlock* stat2 = parse(R"(
|
||||
local f = @checked function(x) return (x + 2) end
|
||||
)");
|
||||
|
||||
LUAU_ASSERT(stat2 != nullptr);
|
||||
|
||||
AstExprFunction* func2 = stat2->body.data[0]->as<AstStatLocal>()->values.data[0]->as<AstExprFunction>();
|
||||
LUAU_ASSERT(func2 != nullptr);
|
||||
|
||||
AstArray<AstAttr*> attributes2 = func2->attributes;
|
||||
|
||||
CHECK_EQ(attributes2.size, 1);
|
||||
|
||||
checkAttribute(attributes2.data[0], AstAttr::Type::Checked, Location(Position(1, 10), Position(1, 18)));
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "parse_attribute_on_local_function_stat")
|
||||
{
|
||||
ScopedFastFlag luauAttributeSyntax{FFlag::LuauAttributeSyntax, true};
|
||||
@ -3320,6 +3360,22 @@ function foo1 () @checked return 'a' end
|
||||
"Expected 'function', 'local function', 'declare function' or a function type declaration after attribute, but got 'return' intead");
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "dont_parse_attribute_on_argument_non_function")
|
||||
{
|
||||
ScopedFastFlag sff[] = {{FFlag::LuauAttributeSyntax, true}, {FFlag::LuauAttributeSyntaxFunExpr, true}};
|
||||
|
||||
ParseResult pr = tryParse(R"(
|
||||
local function invoker(f, y)
|
||||
return f(y)
|
||||
end
|
||||
|
||||
invoker(function(x) return (x + 2) end, @checked 1)
|
||||
)");
|
||||
|
||||
checkFirstErrorForAttributes(
|
||||
pr.errors, 1, Location(Position(5, 40), Position(5, 48)), "Expected 'function' declaration after attribute, but got '1' intead");
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "parse_attribute_on_function_type_declaration")
|
||||
{
|
||||
ScopedFastFlag luauAttributeSyntax{FFlag::LuauAttributeSyntax, true};
|
||||
@ -3450,21 +3506,21 @@ end)");
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "can_parse_leading_bar_unions_successfully")
|
||||
{
|
||||
ScopedFastFlag sff{FFlag::LuauLeadingBarAndAmpersand, true};
|
||||
ScopedFastFlag sff{FFlag::LuauLeadingBarAndAmpersand2, true};
|
||||
|
||||
parse(R"(type A = | "Hello" | "World")");
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "can_parse_leading_ampersand_intersections_successfully")
|
||||
{
|
||||
ScopedFastFlag sff{FFlag::LuauLeadingBarAndAmpersand, true};
|
||||
ScopedFastFlag sff{FFlag::LuauLeadingBarAndAmpersand2, true};
|
||||
|
||||
parse(R"(type A = & { string } & { number })");
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "mixed_leading_intersection_and_union_not_allowed")
|
||||
{
|
||||
ScopedFastFlag sff{FFlag::LuauLeadingBarAndAmpersand, true};
|
||||
ScopedFastFlag sff{FFlag::LuauLeadingBarAndAmpersand2, true};
|
||||
|
||||
matchParseError("type A = & number | string | boolean", "Mixing union and intersection types is not allowed; consider wrapping in parentheses.");
|
||||
matchParseError("type A = | number & string & boolean", "Mixing union and intersection types is not allowed; consider wrapping in parentheses.");
|
||||
|
@ -356,32 +356,15 @@ TEST_CASE_FIXTURE(Fixture, "quit_stringifying_type_when_length_is_exceeded")
|
||||
)");
|
||||
if (FFlag::DebugLuauDeferredConstraintResolution)
|
||||
{
|
||||
LUAU_REQUIRE_ERROR_COUNT(3, result);
|
||||
auto err = get<ExplicitFunctionAnnotationRecommended>(result.errors[0]);
|
||||
LUAU_ASSERT(err);
|
||||
CHECK("(...any) -> ()" == toString(err->recommendedReturn));
|
||||
REQUIRE(1 == err->recommendedArgs.size());
|
||||
CHECK("unknown" == toString(err->recommendedArgs[0].second));
|
||||
err = get<ExplicitFunctionAnnotationRecommended>(result.errors[1]);
|
||||
LUAU_ASSERT(err);
|
||||
// FIXME: this recommendation could be better
|
||||
CHECK("<a>(a) -> or<a, (...any) -> ()>" == toString(err->recommendedReturn));
|
||||
REQUIRE(1 == err->recommendedArgs.size());
|
||||
CHECK("unknown" == toString(err->recommendedArgs[0].second));
|
||||
err = get<ExplicitFunctionAnnotationRecommended>(result.errors[2]);
|
||||
LUAU_ASSERT(err);
|
||||
// FIXME: this recommendation could be better
|
||||
CHECK("<a>(a) -> or<a, <b>(b) -> or<b, (...any) -> ()>>" == toString(err->recommendedReturn));
|
||||
REQUIRE(1 == err->recommendedArgs.size());
|
||||
CHECK("unknown" == toString(err->recommendedArgs[0].second));
|
||||
LUAU_REQUIRE_NO_ERRORS(result);
|
||||
|
||||
ToStringOptions o;
|
||||
o.exhaustive = false;
|
||||
o.maxTypeLength = 20;
|
||||
CHECK_EQ(toString(requireType("f0"), o), "() -> ()");
|
||||
CHECK_EQ(toString(requireType("f1"), o), "<a>(a) -> or<a, () -> ... *TRUNCATED*");
|
||||
CHECK_EQ(toString(requireType("f2"), o), "<b>(b) -> or<b, <a>(a... *TRUNCATED*");
|
||||
CHECK_EQ(toString(requireType("f3"), o), "<c>(c) -> or<c, <b>(b... *TRUNCATED*");
|
||||
CHECK_EQ(toString(requireType("f1"), o), "<a>(a) -> (() -> ()) ... *TRUNCATED*");
|
||||
CHECK_EQ(toString(requireType("f2"), o), "<b>(b) -> (<a>(a) -> (() -> ())... *TRUNCATED*");
|
||||
CHECK_EQ(toString(requireType("f3"), o), "<c>(c) -> (<b>(b) -> (<a>(a) -> (() -> ())... *TRUNCATED*");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -408,32 +391,15 @@ TEST_CASE_FIXTURE(Fixture, "stringifying_type_is_still_capped_when_exhaustive")
|
||||
|
||||
if (FFlag::DebugLuauDeferredConstraintResolution)
|
||||
{
|
||||
LUAU_REQUIRE_ERROR_COUNT(3, result);
|
||||
auto err = get<ExplicitFunctionAnnotationRecommended>(result.errors[0]);
|
||||
LUAU_ASSERT(err);
|
||||
CHECK("(...any) -> ()" == toString(err->recommendedReturn));
|
||||
REQUIRE(1 == err->recommendedArgs.size());
|
||||
CHECK("unknown" == toString(err->recommendedArgs[0].second));
|
||||
err = get<ExplicitFunctionAnnotationRecommended>(result.errors[1]);
|
||||
LUAU_ASSERT(err);
|
||||
// FIXME: this recommendation could be better
|
||||
CHECK("<a>(a) -> or<a, (...any) -> ()>" == toString(err->recommendedReturn));
|
||||
REQUIRE(1 == err->recommendedArgs.size());
|
||||
CHECK("unknown" == toString(err->recommendedArgs[0].second));
|
||||
err = get<ExplicitFunctionAnnotationRecommended>(result.errors[2]);
|
||||
LUAU_ASSERT(err);
|
||||
// FIXME: this recommendation could be better
|
||||
CHECK("<a>(a) -> or<a, <b>(b) -> or<b, (...any) -> ()>>" == toString(err->recommendedReturn));
|
||||
REQUIRE(1 == err->recommendedArgs.size());
|
||||
CHECK("unknown" == toString(err->recommendedArgs[0].second));
|
||||
LUAU_REQUIRE_NO_ERRORS(result);
|
||||
|
||||
ToStringOptions o;
|
||||
o.exhaustive = true;
|
||||
o.maxTypeLength = 20;
|
||||
CHECK_EQ(toString(requireType("f0"), o), "() -> ()");
|
||||
CHECK_EQ(toString(requireType("f1"), o), "<a>(a) -> or<a, () -> ... *TRUNCATED*");
|
||||
CHECK_EQ(toString(requireType("f2"), o), "<b>(b) -> or<b, <a>(a... *TRUNCATED*");
|
||||
CHECK_EQ(toString(requireType("f3"), o), "<c>(c) -> or<c, <b>(b... *TRUNCATED*");
|
||||
CHECK_EQ(toString(requireType("f1"), o), "<a>(a) -> (() -> ()) ... *TRUNCATED*");
|
||||
CHECK_EQ(toString(requireType("f2"), o), "<b>(b) -> (<a>(a) -> (() -> ())... *TRUNCATED*");
|
||||
CHECK_EQ(toString(requireType("f3"), o), "<c>(c) -> (<b>(b) -> (<a>(a) -> (() -> ())... *TRUNCATED*");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -167,15 +167,13 @@ TEST_CASE_FIXTURE(FamilyFixture, "table_internal_families")
|
||||
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
||||
CHECK(toString(requireType("a")) == "{string}");
|
||||
CHECK(toString(requireType("b")) == "{number}");
|
||||
CHECK(toString(requireType("c")) == "{Swap<boolean>}");
|
||||
CHECK(toString(result.errors[0]) == "Type family instance Swap<boolean> is uninhabited");
|
||||
// FIXME: table types are constructing a trivial union here.
|
||||
CHECK(toString(requireType("c")) == "{Swap<boolean | boolean | boolean>}");
|
||||
CHECK(toString(result.errors[0]) == "Type family instance Swap<boolean | boolean | boolean> is uninhabited");
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(FamilyFixture, "function_internal_families")
|
||||
{
|
||||
// This test is broken right now, but it's not because of type families. See
|
||||
// CLI-71143.
|
||||
|
||||
if (!FFlag::DebugLuauDeferredConstraintResolution)
|
||||
return;
|
||||
|
||||
@ -829,4 +827,222 @@ TEST_CASE_FIXTURE(BuiltinsFixture, "ensure_equivalence_with_distributivity")
|
||||
CHECK(toString(requireTypeAlias("U")) == "A | A | B | B");
|
||||
}
|
||||
|
||||
TEST_SUITE_END();
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "we_shouldnt_warn_that_a_reducible_type_family_is_uninhabited")
|
||||
{
|
||||
if (!FFlag::DebugLuauDeferredConstraintResolution)
|
||||
return;
|
||||
|
||||
CheckResult result = check(R"(
|
||||
|
||||
local Debounce = false
|
||||
local Active = false
|
||||
|
||||
local function Use(Mode)
|
||||
|
||||
if Mode ~= nil then
|
||||
|
||||
if Mode == false and Active == false then
|
||||
return
|
||||
else
|
||||
Active = not Mode
|
||||
end
|
||||
|
||||
Debounce = false
|
||||
end
|
||||
Active = not Active
|
||||
|
||||
end
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_NO_ERRORS(result);
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "index_type_family_works")
|
||||
{
|
||||
if (!FFlag::DebugLuauDeferredConstraintResolution)
|
||||
return;
|
||||
|
||||
CheckResult result = check(R"(
|
||||
type MyObject = {a: string, b: number, c: boolean}
|
||||
type IdxAType = index<MyObject, "a">
|
||||
type IdxBType = index<MyObject, keyof<MyObject>>
|
||||
|
||||
local function ok(idx: IdxAType): string return idx end
|
||||
local function ok2(idx: IdxBType): string | number | boolean return idx end
|
||||
local function err(idx: IdxAType): boolean return idx end
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
||||
|
||||
TypePackMismatch* tpm = get<TypePackMismatch>(result.errors[0]);
|
||||
REQUIRE(tpm);
|
||||
CHECK_EQ("boolean", toString(tpm->wantedTp));
|
||||
CHECK_EQ("string", toString(tpm->givenTp));
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "index_type_family_works_w_array")
|
||||
{
|
||||
if (!FFlag::DebugLuauDeferredConstraintResolution)
|
||||
return;
|
||||
|
||||
CheckResult result = check(R"(
|
||||
local MyObject = {"hello", 1, true}
|
||||
type IdxAType = index<typeof(MyObject), number>
|
||||
|
||||
local function ok(idx: IdxAType): string | number | boolean return idx end
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_NO_ERRORS(result);
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "index_type_family_works_w_generic_types")
|
||||
{
|
||||
if (!FFlag::DebugLuauDeferredConstraintResolution)
|
||||
return;
|
||||
|
||||
CheckResult result = check(R"(
|
||||
local function access<T, K>(tbl: T & {}, key: K): index<T, K>
|
||||
return tbl[key]
|
||||
end
|
||||
|
||||
local subjects = {
|
||||
english = "boring",
|
||||
math = "fun"
|
||||
}
|
||||
|
||||
local key: "english" = "english"
|
||||
local a: string = access(subjects, key)
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_NO_ERRORS(result);
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "index_type_family_errors_w_bad_indexer")
|
||||
{
|
||||
if (!FFlag::DebugLuauDeferredConstraintResolution)
|
||||
return;
|
||||
|
||||
CheckResult result = check(R"(
|
||||
type MyObject = {a: string, b: number, c: boolean}
|
||||
type errType1 = index<MyObject, "d">
|
||||
type errType2 = index<MyObject, boolean>
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_ERROR_COUNT(2, result);
|
||||
CHECK(toString(result.errors[0]) == "Property '\"d\"' does not exist on type 'MyObject'");
|
||||
CHECK(toString(result.errors[1]) == "Property 'boolean' does not exist on type 'MyObject'");
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "index_type_family_errors_w_var_indexer")
|
||||
{
|
||||
if (!FFlag::DebugLuauDeferredConstraintResolution)
|
||||
return;
|
||||
|
||||
CheckResult result = check(R"(
|
||||
type MyObject = {a: string, b: number, c: boolean}
|
||||
local key = "a"
|
||||
|
||||
type errType1 = index<MyObject, key>
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_ERROR_COUNT(2, result);
|
||||
CHECK(toString(result.errors[0]) == "Second argument to index<MyObject, _> is not a valid index type");
|
||||
CHECK(toString(result.errors[1]) == "Unknown type 'key'");
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "index_type_family_works_w_union_type_indexer")
|
||||
{
|
||||
if (!FFlag::DebugLuauDeferredConstraintResolution)
|
||||
return;
|
||||
|
||||
CheckResult result = check(R"(
|
||||
type MyObject = {a: string, b: number, c: boolean}
|
||||
|
||||
type idxType = index<MyObject, "a" | "b">
|
||||
local function ok(idx: idxType): string | number return idx end
|
||||
|
||||
type errType = index<MyObject, "a" | "d">
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
||||
CHECK(toString(result.errors[0]) == "Property '\"a\" | \"d\"' does not exist on type 'MyObject'");
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "index_type_family_works_w_union_type_indexee")
|
||||
{
|
||||
if (!FFlag::DebugLuauDeferredConstraintResolution)
|
||||
return;
|
||||
|
||||
CheckResult result = check(R"(
|
||||
type MyObject = {a: string, b: number, c: boolean}
|
||||
type MyObject2 = {a: number}
|
||||
|
||||
type idxTypeA = index<MyObject | MyObject2, "a">
|
||||
local function ok(idx: idxTypeA): string | number return idx end
|
||||
|
||||
type errType = index<MyObject | MyObject2, "b">
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
||||
CHECK(toString(result.errors[0]) == "Property '\"b\"' does not exist on type 'MyObject | MyObject2'");
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "index_type_family_rfc_alternative_section")
|
||||
{
|
||||
if (!FFlag::DebugLuauDeferredConstraintResolution)
|
||||
return;
|
||||
|
||||
CheckResult result = check(R"(
|
||||
type MyObject = {a: string}
|
||||
type MyObject2 = {a: string, b: number}
|
||||
|
||||
local function edgeCase(param: MyObject)
|
||||
type unknownType = index<typeof(param), "b">
|
||||
end
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
||||
CHECK(toString(result.errors[0]) == "Property '\"b\"' does not exist on type 'MyObject'");
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(ClassFixture, "index_type_family_works_on_classes")
|
||||
{
|
||||
if (!FFlag::DebugLuauDeferredConstraintResolution)
|
||||
return;
|
||||
|
||||
CheckResult result = check(R"(
|
||||
type KeysOfMyObject = index<BaseClass, "BaseField">
|
||||
|
||||
local function ok(idx: KeysOfMyObject): number return idx end
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_NO_ERRORS(result);
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "index_type_family_works_w_index_metatables")
|
||||
{
|
||||
if (!FFlag::DebugLuauDeferredConstraintResolution)
|
||||
return;
|
||||
|
||||
CheckResult result = check(R"(
|
||||
local exampleClass = { Foo = "text", Bar = true }
|
||||
|
||||
local exampleClass2 = setmetatable({ Foo = 8 }, { __index = exampleClass })
|
||||
type exampleTy2 = index<typeof(exampleClass2), "Foo">
|
||||
local function ok(idx: exampleTy2): number return idx end
|
||||
|
||||
local exampleClass3 = setmetatable({ Bar = 5 }, { __index = exampleClass })
|
||||
type exampleTy3 = index<typeof(exampleClass3), "Foo">
|
||||
local function ok2(idx: exampleTy3): string return idx end
|
||||
|
||||
type exampleTy4 = index<typeof(exampleClass3), "Foo" | "Bar">
|
||||
local function ok3(idx: exampleTy4): string | number return idx end
|
||||
|
||||
type errTy = index<typeof(exampleClass2), "Car">
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
||||
CHECK(toString(result.errors[0]) == "Property '\"Car\"' does not exist on type 'exampleClass2'");
|
||||
}
|
||||
|
||||
TEST_SUITE_END();
|
@ -9,7 +9,6 @@ using namespace Luau;
|
||||
|
||||
LUAU_FASTFLAG(DebugLuauDeferredConstraintResolution)
|
||||
LUAU_FASTFLAG(DebugLuauSharedSelf);
|
||||
LUAU_FASTFLAG(LuauForbidAliasNamedTypeof);
|
||||
|
||||
TEST_SUITE_BEGIN("TypeAliases");
|
||||
|
||||
@ -1065,8 +1064,6 @@ TEST_CASE_FIXTURE(Fixture, "table_types_record_the_property_locations")
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "typeof_is_not_a_valid_alias_name")
|
||||
{
|
||||
ScopedFastFlag sff{FFlag::LuauForbidAliasNamedTypeof, true};
|
||||
|
||||
CheckResult result = check(R"(
|
||||
type typeof = number
|
||||
)");
|
||||
|
@ -696,13 +696,7 @@ TEST_CASE_FIXTURE(Fixture, "loop_iter_basic")
|
||||
if (FFlag::DebugLuauDeferredConstraintResolution)
|
||||
{
|
||||
TypeId keyTy = requireType("key");
|
||||
|
||||
const UnionType* ut = get<UnionType>(keyTy);
|
||||
REQUIRE(ut);
|
||||
|
||||
REQUIRE(ut->options.size() == 2);
|
||||
CHECK_EQ(builtinTypes->nilType, follow(ut->options[0]));
|
||||
CHECK_EQ(*builtinTypes->numberType, *ut->options[1]);
|
||||
CHECK("number?" == toString(keyTy));
|
||||
}
|
||||
else
|
||||
CHECK_EQ(*builtinTypes->numberType, *requireType("key"));
|
||||
|
@ -396,9 +396,17 @@ TEST_CASE_FIXTURE(Fixture, "compound_assign_mismatch_result")
|
||||
s += 10
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_ERROR_COUNT(2, result);
|
||||
CHECK_EQ(result.errors[0], (TypeError{Location{{2, 8}, {2, 9}}, TypeMismatch{builtinTypes->numberType, builtinTypes->stringType}}));
|
||||
CHECK_EQ(result.errors[1], (TypeError{Location{{2, 8}, {2, 15}}, TypeMismatch{builtinTypes->stringType, builtinTypes->numberType}}));
|
||||
if (FFlag::DebugLuauDeferredConstraintResolution)
|
||||
{
|
||||
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
||||
CHECK_EQ(result.errors[0], (TypeError{Location{{2, 8}, {2, 9}}, TypeMismatch{builtinTypes->numberType, builtinTypes->stringType}}));
|
||||
}
|
||||
else
|
||||
{
|
||||
LUAU_REQUIRE_ERROR_COUNT(2, result);
|
||||
CHECK_EQ(result.errors[0], (TypeError{Location{{2, 8}, {2, 9}}, TypeMismatch{builtinTypes->numberType, builtinTypes->stringType}}));
|
||||
CHECK_EQ(result.errors[1], (TypeError{Location{{2, 8}, {2, 15}}, TypeMismatch{builtinTypes->stringType, builtinTypes->numberType}}));
|
||||
}
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "compound_assign_metatable")
|
||||
@ -423,6 +431,33 @@ TEST_CASE_FIXTURE(BuiltinsFixture, "compound_assign_metatable")
|
||||
LUAU_REQUIRE_NO_ERRORS(result);
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "compound_assign_metatable_with_changing_return_type")
|
||||
{
|
||||
ScopedFastFlag sff{FFlag::DebugLuauDeferredConstraintResolution, true};
|
||||
|
||||
CheckResult result = check(R"(
|
||||
--!strict
|
||||
type T = { x: number }
|
||||
local MT = {}
|
||||
|
||||
function MT:__add(other): number
|
||||
return 112
|
||||
end
|
||||
|
||||
local t = setmetatable({x = 2}, MT)
|
||||
local u = t + 3
|
||||
t += 3
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
||||
|
||||
TypeMismatch* tm = get<TypeMismatch>(result.errors[0]);
|
||||
REQUIRE(tm);
|
||||
|
||||
CHECK("t" == toString(tm->wantedType));
|
||||
CHECK("number" == toString(tm->givenType));
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "compound_assign_result_must_be_compatible_with_var")
|
||||
{
|
||||
CheckResult result = check(R"(
|
||||
|
@ -576,15 +576,13 @@ TEST_CASE_FIXTURE(BuiltinsFixture, "singletons_stick_around_under_assignment")
|
||||
|
||||
local foo = (nil :: any) :: Foo
|
||||
|
||||
print(foo.kind == "Bar") -- TypeError: Type "Foo" cannot be compared with "Bar"
|
||||
print(foo.kind == "Bar") -- type of equality refines to `false`
|
||||
local kind = foo.kind
|
||||
print(kind == "Bar") -- SHOULD BE: TypeError: Type "Foo" cannot be compared with "Bar"
|
||||
print(kind == "Bar") -- type of equality refines to `false`
|
||||
)");
|
||||
|
||||
// FIXME: Under the new solver, we get both the errors we expect, but they're
|
||||
// duplicated because of how we are currently running type family reduction.
|
||||
if (FFlag::DebugLuauDeferredConstraintResolution)
|
||||
LUAU_REQUIRE_ERROR_COUNT(4, result);
|
||||
LUAU_REQUIRE_NO_ERRORS(result);
|
||||
else
|
||||
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
||||
}
|
||||
|
@ -4511,4 +4511,30 @@ end
|
||||
)");
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "table_literal_inference_assert")
|
||||
{
|
||||
CheckResult result = check(R"(
|
||||
local buttons = {
|
||||
buttons = {};
|
||||
}
|
||||
|
||||
buttons.Button = {
|
||||
call = nil;
|
||||
lightParts = nil;
|
||||
litPropertyOverrides = nil;
|
||||
model = nil;
|
||||
pivot = nil;
|
||||
unlitPropertyOverrides = nil;
|
||||
}
|
||||
buttons.Button.__index = buttons.Button
|
||||
|
||||
local lightFuncs: { (self: types.Button, lit: boolean) -> nil } = {
|
||||
['\x00'] = function(self: types.Button, lit: boolean)
|
||||
end;
|
||||
}
|
||||
)");
|
||||
|
||||
|
||||
}
|
||||
|
||||
TEST_SUITE_END();
|
||||
|
@ -19,6 +19,7 @@
|
||||
LUAU_FASTFLAG(LuauFixLocationSpanTableIndexExpr);
|
||||
LUAU_FASTFLAG(DebugLuauDeferredConstraintResolution);
|
||||
LUAU_FASTFLAG(LuauInstantiateInSubtyping);
|
||||
LUAU_FASTFLAG(LuauLeadingBarAndAmpersand2)
|
||||
LUAU_FASTINT(LuauCheckRecursionLimit);
|
||||
LUAU_FASTINT(LuauNormalizeCacheLimit);
|
||||
LUAU_FASTINT(LuauRecursionLimit);
|
||||
@ -1572,4 +1573,62 @@ TEST_CASE_FIXTURE(BuiltinsFixture, "bad_iter_metamethod")
|
||||
}
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "leading_bar")
|
||||
{
|
||||
ScopedFastFlag sff{FFlag::LuauLeadingBarAndAmpersand2, true};
|
||||
CheckResult result = check(R"(
|
||||
type Bar = | number
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_NO_ERRORS(result);
|
||||
CHECK("number" == toString(requireTypeAlias("Bar")));
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "leading_bar_question_mark")
|
||||
{
|
||||
ScopedFastFlag sff{FFlag::LuauLeadingBarAndAmpersand2, true};
|
||||
CheckResult result = check(R"(
|
||||
type Bar = |?
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
||||
CHECK("Expected type, got '?'" == toString(result.errors[0]));
|
||||
CHECK("*error-type*?" == toString(requireTypeAlias("Bar")));
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "leading_ampersand")
|
||||
{
|
||||
ScopedFastFlag sff{FFlag::LuauLeadingBarAndAmpersand2, true};
|
||||
CheckResult result = check(R"(
|
||||
type Amp = & string
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_NO_ERRORS(result);
|
||||
CHECK("string" == toString(requireTypeAlias("Amp")));
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "leading_bar_no_type")
|
||||
{
|
||||
ScopedFastFlag sff{FFlag::LuauLeadingBarAndAmpersand2, true};
|
||||
CheckResult result = check(R"(
|
||||
type Bar = |
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
||||
CHECK("Expected type, got <eof>" == toString(result.errors[0]));
|
||||
CHECK("*error-type*" == toString(requireTypeAlias("Bar")));
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "leading_ampersand_no_type")
|
||||
{
|
||||
ScopedFastFlag sff{FFlag::LuauLeadingBarAndAmpersand2, true};
|
||||
CheckResult result = check(R"(
|
||||
type Amp = &
|
||||
)");
|
||||
|
||||
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
||||
CHECK("Expected type, got <eof>" == toString(result.errors[0]));
|
||||
CHECK("*error-type*" == toString(requireTypeAlias("Amp")));
|
||||
}
|
||||
|
||||
TEST_SUITE_END();
|
||||
|
@ -726,16 +726,15 @@ assert((function()
|
||||
return sum
|
||||
end)() == 15)
|
||||
|
||||
-- the reason why this test is interesting is that the table created here has arraysize=0 and a single hash element with key = 1.0
|
||||
-- ipairs must iterate through that
|
||||
-- ipairs will not iterate through hash part
|
||||
assert((function()
|
||||
local arr = { [1] = 42 }
|
||||
local arr = { [1] = 1, [42] = 42, x = 10 }
|
||||
local sum = 0
|
||||
for i,v in ipairs(arr) do
|
||||
sum = sum + v
|
||||
end
|
||||
return sum
|
||||
end)() == 42)
|
||||
end)() == 1)
|
||||
|
||||
-- the reason why this test is interesting is it ensures we do correct mutability analysis for locals
|
||||
local function chainTest(n)
|
||||
|
@ -412,8 +412,8 @@ do
|
||||
|
||||
assert(table.find({false, true}, true) == 2)
|
||||
|
||||
-- make sure table.find checks the hash portion as well by constructing a table literal that forces the value into the hash part
|
||||
assert(table.find({[(1)] = true}, true) == 1)
|
||||
-- make sure table.find checks the hash portion as well
|
||||
assert(table.find({[(2)] = true}, true, 2) == 2)
|
||||
end
|
||||
|
||||
-- test table.concat
|
||||
|
@ -32,16 +32,6 @@ BuiltinTests.string_format_report_all_type_errors_at_correct_positions
|
||||
BuiltinTests.string_format_use_correct_argument2
|
||||
BuiltinTests.table_freeze_is_generic
|
||||
BuiltinTests.tonumber_returns_optional_number_type
|
||||
ControlFlowAnalysis.for_record_do_if_not_x_break
|
||||
ControlFlowAnalysis.for_record_do_if_not_x_continue
|
||||
ControlFlowAnalysis.if_not_x_break_elif_not_y_break
|
||||
ControlFlowAnalysis.if_not_x_break_elif_not_y_continue
|
||||
ControlFlowAnalysis.if_not_x_break_elif_rand_break_elif_not_y_break
|
||||
ControlFlowAnalysis.if_not_x_continue_elif_not_y_continue
|
||||
ControlFlowAnalysis.if_not_x_continue_elif_not_y_throw_elif_not_z_fallthrough
|
||||
ControlFlowAnalysis.if_not_x_continue_elif_rand_continue_elif_not_y_continue
|
||||
ControlFlowAnalysis.if_not_x_return_elif_not_y_break
|
||||
DefinitionTests.class_definition_overload_metamethods
|
||||
Differ.metatable_metamissing_left
|
||||
Differ.metatable_metamissing_right
|
||||
Differ.metatable_metanormal
|
||||
@ -238,8 +228,6 @@ ToString.named_metatable_toStringNamedFunction
|
||||
ToString.no_parentheses_around_cyclic_function_type_in_intersection
|
||||
ToString.pick_distinct_names_for_mixed_explicit_and_implicit_generics
|
||||
ToString.primitive
|
||||
ToString.quit_stringifying_type_when_length_is_exceeded
|
||||
ToString.stringifying_type_is_still_capped_when_exhaustive
|
||||
ToString.toStringDetailed2
|
||||
ToString.toStringErrorPack
|
||||
TryUnifyTests.members_of_failed_typepack_unification_are_unified_with_errorType
|
||||
@ -262,7 +250,6 @@ TypeAliases.type_alias_of_an_imported_recursive_generic_type
|
||||
TypeFamilyTests.add_family_at_work
|
||||
TypeFamilyTests.family_as_fn_arg
|
||||
TypeFamilyTests.internal_families_raise_errors
|
||||
TypeFamilyTests.mul_family_with_union_of_multiplicatives_2
|
||||
TypeFamilyTests.unsolvable_family
|
||||
TypeInfer.be_sure_to_use_active_txnlog_when_evaluating_a_variadic_overload
|
||||
TypeInfer.check_type_infer_recursion_count
|
||||
@ -319,7 +306,6 @@ TypeInferFunctions.function_exprs_are_generalized_at_signature_scope_not_enclosi
|
||||
TypeInferFunctions.function_is_supertype_of_concrete_functions
|
||||
TypeInferFunctions.function_statement_sealed_table_assignment_through_indexer
|
||||
TypeInferFunctions.generic_packs_are_not_variadic
|
||||
TypeInferFunctions.higher_order_function_2
|
||||
TypeInferFunctions.higher_order_function_4
|
||||
TypeInferFunctions.improved_function_arg_mismatch_error_nonstrict
|
||||
TypeInferFunctions.improved_function_arg_mismatch_errors
|
||||
@ -339,7 +325,7 @@ TypeInferFunctions.param_1_and_2_both_takes_the_same_generic_but_their_arguments
|
||||
TypeInferFunctions.param_1_and_2_both_takes_the_same_generic_but_their_arguments_are_incompatible_2
|
||||
TypeInferFunctions.report_exiting_without_return_nonstrict
|
||||
TypeInferFunctions.return_type_by_overload
|
||||
TypeInferFunctions.tf_suggest_return_type
|
||||
TypeInferFunctions.simple_unannotated_mutual_recursion
|
||||
TypeInferFunctions.too_few_arguments_variadic
|
||||
TypeInferFunctions.too_few_arguments_variadic_generic
|
||||
TypeInferFunctions.too_few_arguments_variadic_generic2
|
||||
@ -377,7 +363,6 @@ TypeInferOOP.inferring_hundreds_of_self_calls_should_not_suffocate_memory
|
||||
TypeInferOOP.promise_type_error_too_complex
|
||||
TypeInferOperators.add_type_family_works
|
||||
TypeInferOperators.cli_38355_recursive_union
|
||||
TypeInferOperators.compound_assign_mismatch_metatable
|
||||
TypeInferOperators.compound_assign_result_must_be_compatible_with_var
|
||||
TypeInferOperators.concat_op_on_free_lhs_and_string_rhs
|
||||
TypeInferOperators.concat_op_on_string_lhs_and_free_rhs
|
||||
@ -408,8 +393,6 @@ TypeSingletons.error_detailed_tagged_union_mismatch_bool
|
||||
TypeSingletons.error_detailed_tagged_union_mismatch_string
|
||||
TypeSingletons.overloaded_function_call_with_singletons_mismatch
|
||||
TypeSingletons.return_type_of_f_is_not_widened
|
||||
TypeSingletons.singletons_stick_around_under_assignment
|
||||
TypeSingletons.string_singleton_function_call
|
||||
TypeSingletons.table_properties_type_error_escapes
|
||||
TypeSingletons.widen_the_supertype_if_it_is_free_and_subtype_has_singleton
|
||||
TypeStatesTest.typestates_preserve_error_suppression_properties
|
||||
|
Loading…
Reference in New Issue
Block a user