2023-08-19 01:06:29 +08:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
|
2023-11-11 02:05:48 +08:00
|
|
|
#include "Luau/Set.h"
|
2023-10-21 04:36:26 +08:00
|
|
|
#include "Luau/TypeFwd.h"
|
2023-10-14 03:38:31 +08:00
|
|
|
#include "Luau/TypePairHash.h"
|
2023-10-21 04:36:26 +08:00
|
|
|
#include "Luau/TypePath.h"
|
2023-11-11 02:05:48 +08:00
|
|
|
#include "Luau/DenseHash.h"
|
2023-08-19 01:06:29 +08:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <optional>
|
|
|
|
|
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
|
|
|
|
template<typename A, typename B>
|
|
|
|
struct TryPair;
|
2023-08-25 23:25:09 +08:00
|
|
|
struct InternalErrorReporter;
|
2023-08-19 01:06:29 +08:00
|
|
|
|
2023-09-02 00:38:53 +08:00
|
|
|
class TypeIds;
|
2023-08-19 01:06:29 +08:00
|
|
|
class Normalizer;
|
|
|
|
struct NormalizedType;
|
2023-09-02 00:38:53 +08:00
|
|
|
struct NormalizedClassType;
|
2023-09-16 00:27:45 +08:00
|
|
|
struct NormalizedStringType;
|
2023-09-08 07:24:03 +08:00
|
|
|
struct NormalizedFunctionType;
|
2023-11-11 02:05:48 +08:00
|
|
|
struct TypeArena;
|
|
|
|
struct Scope;
|
|
|
|
struct TableIndexer;
|
2023-08-19 01:06:29 +08:00
|
|
|
|
2023-10-21 04:36:26 +08:00
|
|
|
struct SubtypingReasoning
|
|
|
|
{
|
|
|
|
Path subPath;
|
|
|
|
Path superPath;
|
|
|
|
|
|
|
|
bool operator==(const SubtypingReasoning& other) const;
|
|
|
|
};
|
2023-09-16 00:27:45 +08:00
|
|
|
|
2023-11-11 02:05:48 +08:00
|
|
|
struct SubtypingReasoningHash
|
|
|
|
{
|
|
|
|
size_t operator()(const SubtypingReasoning& r) const;
|
|
|
|
};
|
|
|
|
|
2023-08-25 23:25:09 +08:00
|
|
|
struct SubtypingResult
|
2023-08-19 01:06:29 +08:00
|
|
|
{
|
|
|
|
bool isSubtype = false;
|
|
|
|
bool isErrorSuppressing = false;
|
|
|
|
bool normalizationTooComplex = false;
|
2023-10-14 03:38:31 +08:00
|
|
|
bool isCacheable = true;
|
2023-08-19 01:06:29 +08:00
|
|
|
|
2023-10-21 04:36:26 +08:00
|
|
|
/// The reason for isSubtype to be false. May not be present even if
|
|
|
|
/// isSubtype is false, depending on the input types.
|
2023-11-11 02:05:48 +08:00
|
|
|
DenseHashSet<SubtypingReasoning, SubtypingReasoningHash> reasoning{SubtypingReasoning{}};
|
2023-10-21 04:36:26 +08:00
|
|
|
|
2023-09-16 00:27:45 +08:00
|
|
|
SubtypingResult& andAlso(const SubtypingResult& other);
|
|
|
|
SubtypingResult& orElse(const SubtypingResult& other);
|
2023-10-21 04:36:26 +08:00
|
|
|
SubtypingResult& withBothComponent(TypePath::Component component);
|
|
|
|
SubtypingResult& withSuperComponent(TypePath::Component component);
|
|
|
|
SubtypingResult& withSubComponent(TypePath::Component component);
|
|
|
|
SubtypingResult& withBothPath(TypePath::Path path);
|
|
|
|
SubtypingResult& withSubPath(TypePath::Path path);
|
|
|
|
SubtypingResult& withSuperPath(TypePath::Path path);
|
2023-08-19 01:06:29 +08:00
|
|
|
|
2023-09-02 00:38:53 +08:00
|
|
|
// Only negates the `isSubtype`.
|
|
|
|
static SubtypingResult negate(const SubtypingResult& result);
|
2023-08-25 23:25:09 +08:00
|
|
|
static SubtypingResult all(const std::vector<SubtypingResult>& results);
|
|
|
|
static SubtypingResult any(const std::vector<SubtypingResult>& results);
|
2023-08-19 01:06:29 +08:00
|
|
|
};
|
|
|
|
|
2023-10-14 03:38:31 +08:00
|
|
|
struct SubtypingEnvironment
|
|
|
|
{
|
|
|
|
struct GenericBounds
|
|
|
|
{
|
|
|
|
DenseHashSet<TypeId> lowerBound{nullptr};
|
|
|
|
DenseHashSet<TypeId> upperBound{nullptr};
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When we encounter a generic over the course of a subtyping test, we need
|
|
|
|
* to tentatively map that generic onto a type on the other side.
|
|
|
|
*/
|
|
|
|
DenseHashMap<TypeId, GenericBounds> mappedGenerics{nullptr};
|
|
|
|
DenseHashMap<TypePackId, TypePackId> mappedGenericPacks{nullptr};
|
|
|
|
|
|
|
|
DenseHashMap<std::pair<TypeId, TypeId>, SubtypingResult, TypePairHash> ephemeralCache{{}};
|
|
|
|
};
|
|
|
|
|
2023-08-19 01:06:29 +08:00
|
|
|
struct Subtyping
|
|
|
|
{
|
|
|
|
NotNull<BuiltinTypes> builtinTypes;
|
2023-08-25 23:25:09 +08:00
|
|
|
NotNull<TypeArena> arena;
|
2023-08-19 01:06:29 +08:00
|
|
|
NotNull<Normalizer> normalizer;
|
2023-08-25 23:25:09 +08:00
|
|
|
NotNull<InternalErrorReporter> iceReporter;
|
|
|
|
|
2023-09-16 00:27:45 +08:00
|
|
|
NotNull<Scope> scope;
|
|
|
|
|
2023-08-25 23:25:09 +08:00
|
|
|
enum class Variance
|
|
|
|
{
|
|
|
|
Covariant,
|
|
|
|
Contravariant
|
|
|
|
};
|
|
|
|
|
|
|
|
Variance variance = Variance::Covariant;
|
|
|
|
|
2023-11-11 02:05:48 +08:00
|
|
|
using SeenSet = Set<std::pair<TypeId, TypeId>, TypePairHash>;
|
2023-09-02 00:38:53 +08:00
|
|
|
|
2023-11-11 02:05:48 +08:00
|
|
|
SeenSet seenTypes{{}};
|
2023-08-19 01:06:29 +08:00
|
|
|
|
2023-10-14 03:38:31 +08:00
|
|
|
Subtyping(NotNull<BuiltinTypes> builtinTypes, NotNull<TypeArena> typeArena, NotNull<Normalizer> normalizer,
|
|
|
|
NotNull<InternalErrorReporter> iceReporter, NotNull<Scope> scope);
|
|
|
|
|
2023-09-16 00:27:45 +08:00
|
|
|
Subtyping(const Subtyping&) = delete;
|
|
|
|
Subtyping& operator=(const Subtyping&) = delete;
|
|
|
|
|
|
|
|
Subtyping(Subtyping&&) = default;
|
|
|
|
Subtyping& operator=(Subtyping&&) = default;
|
|
|
|
|
2023-10-14 03:38:31 +08:00
|
|
|
// Only used by unit tests to test that the cache works.
|
|
|
|
const DenseHashMap<std::pair<TypeId, TypeId>, SubtypingResult, TypePairHash>& peekCache() const
|
|
|
|
{
|
|
|
|
return resultCache;
|
|
|
|
}
|
|
|
|
|
2023-08-19 01:06:29 +08:00
|
|
|
// TODO cache
|
|
|
|
// TODO cyclic types
|
|
|
|
// TODO recursion limits
|
|
|
|
|
2023-08-25 23:25:09 +08:00
|
|
|
SubtypingResult isSubtype(TypeId subTy, TypeId superTy);
|
|
|
|
SubtypingResult isSubtype(TypePackId subTy, TypePackId superTy);
|
2023-08-19 01:06:29 +08:00
|
|
|
|
|
|
|
private:
|
2023-10-14 03:38:31 +08:00
|
|
|
DenseHashMap<std::pair<TypeId, TypeId>, SubtypingResult, TypePairHash> resultCache{{}};
|
|
|
|
|
|
|
|
SubtypingResult cache(SubtypingEnvironment& env, SubtypingResult res, TypeId subTy, TypeId superTy);
|
|
|
|
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, TypeId subTy, TypeId superTy);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, TypePackId subTy, TypePackId superTy);
|
2023-09-16 00:27:45 +08:00
|
|
|
|
|
|
|
template<typename SubTy, typename SuperTy>
|
2023-10-14 03:38:31 +08:00
|
|
|
SubtypingResult isContravariantWith(SubtypingEnvironment& env, SubTy&& subTy, SuperTy&& superTy);
|
2023-09-16 00:27:45 +08:00
|
|
|
|
|
|
|
template<typename SubTy, typename SuperTy>
|
2023-10-14 03:38:31 +08:00
|
|
|
SubtypingResult isInvariantWith(SubtypingEnvironment& env, SubTy&& subTy, SuperTy&& superTy);
|
2023-09-16 00:27:45 +08:00
|
|
|
|
|
|
|
template<typename SubTy, typename SuperTy>
|
2023-10-14 03:38:31 +08:00
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const TryPair<const SubTy*, const SuperTy*>& pair);
|
2023-09-16 00:27:45 +08:00
|
|
|
|
|
|
|
template<typename SubTy, typename SuperTy>
|
2023-10-14 03:38:31 +08:00
|
|
|
SubtypingResult isContravariantWith(SubtypingEnvironment& env, const TryPair<const SubTy*, const SuperTy*>& pair);
|
2023-08-25 23:25:09 +08:00
|
|
|
|
2023-08-19 01:06:29 +08:00
|
|
|
template<typename SubTy, typename SuperTy>
|
2023-10-14 03:38:31 +08:00
|
|
|
SubtypingResult isInvariantWith(SubtypingEnvironment& env, const TryPair<const SubTy*, const SuperTy*>& pair);
|
|
|
|
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, TypeId subTy, const UnionType* superUnion);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const UnionType* subUnion, TypeId superTy);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, TypeId subTy, const IntersectionType* superIntersection);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const IntersectionType* subIntersection, TypeId superTy);
|
|
|
|
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const NegationType* subNegation, TypeId superTy);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const TypeId subTy, const NegationType* superNegation);
|
|
|
|
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const PrimitiveType* subPrim, const PrimitiveType* superPrim);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const SingletonType* subSingleton, const PrimitiveType* superPrim);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const SingletonType* subSingleton, const SingletonType* superSingleton);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const TableType* subTable, const TableType* superTable);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const MetatableType* subMt, const MetatableType* superMt);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const MetatableType* subMt, const TableType* superTable);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const ClassType* subClass, const ClassType* superClass);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const ClassType* subClass, const TableType* superTable);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const FunctionType* subFunction, const FunctionType* superFunction);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const PrimitiveType* subPrim, const TableType* superTable);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const SingletonType* subSingleton, const TableType* superTable);
|
|
|
|
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const TableIndexer& subIndexer, const TableIndexer& superIndexer);
|
|
|
|
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const NormalizedType* subNorm, const NormalizedType* superNorm);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const NormalizedClassType& subClass, const NormalizedClassType& superClass);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const NormalizedClassType& subClass, const TypeIds& superTables);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const NormalizedStringType& subString, const NormalizedStringType& superString);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const NormalizedStringType& subString, const TypeIds& superTables);
|
|
|
|
SubtypingResult isCovariantWith(
|
|
|
|
SubtypingEnvironment& env, const NormalizedFunctionType& subFunction, const NormalizedFunctionType& superFunction);
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const TypeIds& subTypes, const TypeIds& superTypes);
|
|
|
|
|
|
|
|
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const VariadicTypePack* subVariadic, const VariadicTypePack* superVariadic);
|
|
|
|
|
|
|
|
bool bindGeneric(SubtypingEnvironment& env, TypeId subTp, TypeId superTp);
|
|
|
|
bool bindGeneric(SubtypingEnvironment& env, TypePackId subTp, TypePackId superTp);
|
2023-08-25 23:25:09 +08:00
|
|
|
|
2023-09-16 00:27:45 +08:00
|
|
|
template<typename T, typename Container>
|
2023-08-25 23:25:09 +08:00
|
|
|
TypeId makeAggregateType(const Container& container, TypeId orElse);
|
|
|
|
|
2023-09-16 00:27:45 +08:00
|
|
|
[[noreturn]] void unexpected(TypePackId tp);
|
2023-08-19 01:06:29 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Luau
|