luau/Analysis/include/Luau/Subtyping.h

312 lines
12 KiB
C
Raw Normal View History

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"
2024-07-12 06:13:45 +08:00
#include "Luau/TypeFunction.h"
2024-02-03 02:20:03 +08:00
#include "Luau/TypeCheckLimits.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;
2023-09-02 00:38:53 +08:00
struct NormalizedClassType;
2023-09-08 07:24:03 +08:00
struct NormalizedFunctionType;
2024-02-24 02:40:00 +08:00
struct NormalizedStringType;
struct NormalizedType;
struct Property;
2023-11-11 02:05:48 +08:00
struct Scope;
struct TableIndexer;
2024-02-24 02:40:00 +08:00
struct TypeArena;
struct TypeCheckLimits;
2023-08-19 01:06:29 +08:00
2023-11-18 02:15:31 +08:00
enum class SubtypingVariance
{
// Used for an empty key. Should never appear in actual code.
Invalid,
Covariant,
// This is used to identify cases where we have a covariant + a
// contravariant reason and we need to merge them.
Contravariant,
2023-11-18 02:15:31 +08:00
Invariant,
};
2023-10-21 04:36:26 +08:00
struct SubtypingReasoning
{
// The path, relative to the _root subtype_, where subtyping failed.
2023-10-21 04:36:26 +08:00
Path subPath;
// The path, relative to the _root supertype_, where subtyping failed.
2023-10-21 04:36:26 +08:00
Path superPath;
2023-11-18 02:15:31 +08:00
SubtypingVariance variance = SubtypingVariance::Covariant;
2023-10-21 04:36:26 +08:00
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;
};
using SubtypingReasonings = DenseHashSet<SubtypingReasoning, SubtypingReasoningHash>;
static const SubtypingReasoning kEmptyReasoning = SubtypingReasoning{TypePath::kEmpty, TypePath::kEmpty, SubtypingVariance::Invalid};
2023-08-25 23:25:09 +08:00
struct SubtypingResult
2023-08-19 01:06:29 +08:00
{
bool isSubtype = false;
bool normalizationTooComplex = false;
2023-10-14 03:38:31 +08:00
bool isCacheable = true;
2024-02-16 09:25:31 +08:00
ErrorVec errors;
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.
SubtypingReasonings reasoning{kEmptyReasoning};
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);
2024-02-16 09:25:31 +08:00
SubtypingResult& withErrors(ErrorVec& err);
2024-02-24 02:40:00 +08:00
SubtypingResult& withError(TypeError err);
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};
};
2024-09-20 22:14:29 +08:00
/* For nested subtyping relationship tests of mapped generic bounds, we keep the outer environment immutable */
SubtypingEnvironment* parent = nullptr;
/// Applies `mappedGenerics` to the given type.
/// This is used specifically to substitute for generics in type function instances.
std::optional<TypeId> applyMappedGenerics(NotNull<BuiltinTypes> builtinTypes, NotNull<TypeArena> arena, TypeId ty);
const TypeId* tryFindSubstitution(TypeId ty) const;
const SubtypingResult* tryFindSubtypingResult(std::pair<TypeId, TypeId> subAndSuper) const;
bool containsMappedType(TypeId ty) const;
bool containsMappedPack(TypePackId tp) const;
GenericBounds& getMappedTypeBounds(TypeId ty);
TypePackId* getMappedPackBounds(TypePackId tp);
2023-10-14 03:38:31 +08:00
/*
* 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};
2024-04-06 01:41:05 +08:00
/*
* See the test cyclic_tables_are_assumed_to_be_compatible_with_classes for
* details.
*
* An empty value is equivalent to a nonexistent key.
*/
DenseHashMap<TypeId, TypeId> substitutions{nullptr};
2023-10-14 03:38:31 +08:00
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;
2024-09-28 01:11:46 +08:00
NotNull<TypeFunctionRuntime> typeFunctionRuntime;
2023-08-25 23:25:09 +08:00
NotNull<InternalErrorReporter> iceReporter;
2024-02-03 02:20:03 +08:00
TypeCheckLimits limits;
2023-09-16 00:27:45 +08:00
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
2024-08-02 07:25:12 +08:00
Subtyping(
NotNull<BuiltinTypes> builtinTypes,
NotNull<TypeArena> typeArena,
NotNull<Normalizer> normalizer,
2024-09-28 01:11:46 +08:00
NotNull<TypeFunctionRuntime> typeFunctionRuntime,
2024-08-23 22:24:33 +08:00
NotNull<InternalErrorReporter> iceReporter
2024-08-02 07:25:12 +08:00
);
2023-10-14 03:38:31 +08:00
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
2024-08-23 22:24:33 +08:00
SubtypingResult isSubtype(TypeId subTy, TypeId superTy, NotNull<Scope> scope);
SubtypingResult isSubtype(TypePackId subTy, TypePackId superTy, NotNull<Scope> scope);
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);
2024-08-23 22:24:33 +08:00
SubtypingResult isCovariantWith(SubtypingEnvironment& env, TypeId subTy, TypeId superTy, NotNull<Scope> scope);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, TypePackId subTp, TypePackId superTp, NotNull<Scope> scope);
2023-09-16 00:27:45 +08:00
template<typename SubTy, typename SuperTy>
2024-08-23 22:24:33 +08:00
SubtypingResult isContravariantWith(SubtypingEnvironment& env, SubTy&& subTy, SuperTy&& superTy, NotNull<Scope> scope);
2023-09-16 00:27:45 +08:00
template<typename SubTy, typename SuperTy>
2024-08-23 22:24:33 +08:00
SubtypingResult isInvariantWith(SubtypingEnvironment& env, SubTy&& subTy, SuperTy&& superTy, NotNull<Scope> scope);
2023-09-16 00:27:45 +08:00
template<typename SubTy, typename SuperTy>
2024-08-23 22:24:33 +08:00
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const TryPair<const SubTy*, const SuperTy*>& pair, NotNull<Scope> scope);
2023-09-16 00:27:45 +08:00
template<typename SubTy, typename SuperTy>
2024-08-23 22:24:33 +08:00
SubtypingResult isContravariantWith(SubtypingEnvironment& env, const TryPair<const SubTy*, const SuperTy*>& pair, NotNull<Scope>);
2023-08-25 23:25:09 +08:00
2023-08-19 01:06:29 +08:00
template<typename SubTy, typename SuperTy>
2024-08-23 22:24:33 +08:00
SubtypingResult isInvariantWith(SubtypingEnvironment& env, const TryPair<const SubTy*, const SuperTy*>& pair, NotNull<Scope>);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, TypeId subTy, const UnionType* superUnion, NotNull<Scope> scope);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const UnionType* subUnion, TypeId superTy, NotNull<Scope> scope);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, TypeId subTy, const IntersectionType* superIntersection, NotNull<Scope> scope);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const IntersectionType* subIntersection, TypeId superTy, NotNull<Scope> scope);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const NegationType* subNegation, TypeId superTy, NotNull<Scope> scope);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const TypeId subTy, const NegationType* superNegation, NotNull<Scope> scope);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const PrimitiveType* subPrim, const PrimitiveType* superPrim, NotNull<Scope> scope);
SubtypingResult isCovariantWith(
SubtypingEnvironment& env,
const SingletonType* subSingleton,
const PrimitiveType* superPrim,
NotNull<Scope> scope
);
SubtypingResult isCovariantWith(
SubtypingEnvironment& env,
const SingletonType* subSingleton,
const SingletonType* superSingleton,
NotNull<Scope> scope
);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const TableType* subTable, const TableType* superTable, NotNull<Scope> scope);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const MetatableType* subMt, const MetatableType* superMt, NotNull<Scope> scope);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const MetatableType* subMt, const TableType* superTable, NotNull<Scope> scope);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const ClassType* subClass, const ClassType* superClass, NotNull<Scope> scope);
SubtypingResult
isCovariantWith(SubtypingEnvironment& env, TypeId subTy, const ClassType* subClass, TypeId superTy, const TableType* superTable, NotNull<Scope>);
SubtypingResult isCovariantWith(
SubtypingEnvironment& env,
const FunctionType* subFunction,
const FunctionType* superFunction,
NotNull<Scope> scope
);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const TableType* subTable, const PrimitiveType* superPrim, NotNull<Scope> scope);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const PrimitiveType* subPrim, const TableType* superTable, NotNull<Scope> scope);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const SingletonType* subSingleton, const TableType* superTable, NotNull<Scope> scope);
SubtypingResult isCovariantWith(
SubtypingEnvironment& env,
const TableIndexer& subIndexer,
const TableIndexer& superIndexer,
NotNull<Scope> scope
);
SubtypingResult
isCovariantWith(SubtypingEnvironment& env, const Property& subProperty, const Property& superProperty, const std::string& name, NotNull<Scope>);
2023-10-14 03:38:31 +08:00
2024-04-20 05:04:30 +08:00
SubtypingResult isCovariantWith(
2024-08-02 07:25:12 +08:00
SubtypingEnvironment& env,
const std::shared_ptr<const NormalizedType>& subNorm,
2024-08-23 22:24:33 +08:00
const std::shared_ptr<const NormalizedType>& superNorm,
NotNull<Scope> scope
2024-08-02 07:25:12 +08:00
);
2023-10-14 03:38:31 +08:00
SubtypingResult isCovariantWith(
2024-08-02 07:25:12 +08:00
SubtypingEnvironment& env,
2024-08-23 22:24:33 +08:00
const NormalizedClassType& subClass,
const NormalizedClassType& superClass,
NotNull<Scope> scope
);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const NormalizedClassType& subClass, const TypeIds& superTables, NotNull<Scope> scope);
SubtypingResult isCovariantWith(
SubtypingEnvironment& env,
const NormalizedStringType& subString,
const NormalizedStringType& superString,
NotNull<Scope> scope
2024-08-02 07:25:12 +08:00
);
2024-08-23 22:24:33 +08:00
SubtypingResult isCovariantWith(
SubtypingEnvironment& env,
const NormalizedStringType& subString,
const TypeIds& superTables,
NotNull<Scope> scope
);
SubtypingResult
isCovariantWith(SubtypingEnvironment& env, const NormalizedFunctionType& subFunction, const NormalizedFunctionType& superFunction, NotNull<Scope>);
SubtypingResult isCovariantWith(SubtypingEnvironment& env, const TypeIds& subTypes, const TypeIds& superTypes, NotNull<Scope> scope);
2023-10-14 03:38:31 +08:00
2024-08-23 22:24:33 +08:00
SubtypingResult isCovariantWith(
SubtypingEnvironment& env,
const VariadicTypePack* subVariadic,
const VariadicTypePack* superVariadic,
NotNull<Scope> scope
);
SubtypingResult isCovariantWith(
SubtypingEnvironment& env,
const TypeFunctionInstanceType* subFunctionInstance,
const TypeId superTy,
NotNull<Scope> scope
);
SubtypingResult isCovariantWith(
SubtypingEnvironment& env,
const TypeId subTy,
const TypeFunctionInstanceType* superFunctionInstance,
NotNull<Scope> scope
);
2023-10-14 03:38:31 +08:00
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);
2024-08-23 22:24:33 +08:00
std::pair<TypeId, ErrorVec> handleTypeFunctionReductionResult(const TypeFunctionInstanceType* functionInstance, NotNull<Scope> scope);
2024-02-03 02:20:03 +08:00
[[noreturn]] void unexpected(TypeId ty);
2023-09-16 00:27:45 +08:00
[[noreturn]] void unexpected(TypePackId tp);
2023-08-19 01:06:29 +08:00
};
} // namespace Luau