forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGenericTypeResolver.h
188 lines (154 loc) · 7.2 KB
/
GenericTypeResolver.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
//===-- GenericTypeResolver.h - Generic Type Resolver Interface -*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file defines the GenericTypeResolver abstract interface.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_SEMA_GENERICTYPERESOLVER_H
#define SWIFT_SEMA_GENERICTYPERESOLVER_H
#include "swift/AST/Type.h"
#include "swift/AST/TypeRepr.h"
#include "swift/Basic/SourceLoc.h"
namespace swift {
class ArchetypeBuilder;
class AssociatedTypeDecl;
class Identifier;
class TypeChecker;
/// Abstract class that resolves references into generic types during
/// type resolution.
class GenericTypeResolver {
public:
virtual ~GenericTypeResolver();
/// Resolve the given generic type parameter to its type.
///
/// This routine is used whenever type checking encounters a reference to a
/// generic parameter. It can replace the generic parameter with (for example)
/// a concrete type or an archetype, depending on context.
///
/// \param gp The generic parameter to resolve.
///
/// \returns The resolved generic type parameter type, which may be \c gp.
virtual Type resolveGenericTypeParamType(GenericTypeParamType *gp) = 0;
/// Resolve a reference to a member within a dependent type.
///
/// \param baseTy The base of the member access.
/// \param baseRange The source range covering the base type.
/// \param ref The reference to the dependent member type.
///
/// \returns A type that refers to the dependent member type, or an error
/// type if such a reference is ill-formed.
virtual Type resolveDependentMemberType(Type baseTy,
DeclContext *DC,
SourceRange baseRange,
ComponentIdentTypeRepr *ref) = 0;
/// Resolve a reference to an associated type within the 'Self' type
/// of a protocol.
///
/// \param selfTy The base of the member access.
/// \param assocType The associated type.
///
/// \returns A type that refers to the dependent member type, or an error
/// type if such a reference is ill-formed.
virtual Type resolveSelfAssociatedType(Type selfTy,
DeclContext *DC,
AssociatedTypeDecl *assocType) = 0;
/// Retrieve the type when referring to the given context.
///
/// \param dc A context in which type checking occurs, which must be a type
/// context (i.e., nominal type or extension thereof).
///
/// \returns the type of context.
virtual Type resolveTypeOfContext(DeclContext *dc) = 0;
};
/// Generic type resolver that leaves all generic types dependent.
///
/// This generic type resolver leaves generic type parameter types alone
/// and only trivially resolves dependent member types.
class DependentGenericTypeResolver : public GenericTypeResolver {
ArchetypeBuilder &Builder;
public:
explicit DependentGenericTypeResolver(ArchetypeBuilder &builder)
: Builder(builder) { }
virtual Type resolveGenericTypeParamType(GenericTypeParamType *gp);
virtual Type resolveDependentMemberType(Type baseTy,
DeclContext *DC,
SourceRange baseRange,
ComponentIdentTypeRepr *ref);
virtual Type resolveSelfAssociatedType(Type selfTy,
DeclContext *DC,
AssociatedTypeDecl *assocType);
virtual Type resolveTypeOfContext(DeclContext *dc);
};
/// Generic type resolver that maps a generic type parameter type to its
/// archetype.
///
/// This generic type resolver replaces generic type parameter types with their
/// corresponding archetypes, eliminating all dependent types in the process.
class GenericTypeToArchetypeResolver : public GenericTypeResolver {
virtual Type resolveGenericTypeParamType(GenericTypeParamType *gp);
virtual Type resolveDependentMemberType(Type baseTy,
DeclContext *DC,
SourceRange baseRange,
ComponentIdentTypeRepr *ref);
virtual Type resolveSelfAssociatedType(Type selfTy,
DeclContext *DC,
AssociatedTypeDecl *assocType);
virtual Type resolveTypeOfContext(DeclContext *dc);
};
/// Generic type resolver that maps any generic type parameter type that
/// has an underlying archetype to its corresponding archetype.
///
/// This generic type resolver replaces generic type parameter types that
/// have archetypes with their archetypes, and leaves all other generic
/// type parameter types unchanged. It is used for the initial type-checks of
/// generic functions (and other generic declarations).
///
/// FIXME: This is not a long-term solution.
class PartialGenericTypeToArchetypeResolver : public GenericTypeResolver {
TypeChecker &TC;
public:
PartialGenericTypeToArchetypeResolver(TypeChecker &tc) : TC(tc) { }
virtual Type resolveGenericTypeParamType(GenericTypeParamType *gp);
virtual Type resolveDependentMemberType(Type baseTy,
DeclContext *DC,
SourceRange baseRange,
ComponentIdentTypeRepr *ref);
virtual Type resolveSelfAssociatedType(Type selfTy,
DeclContext *DC,
AssociatedTypeDecl *assocType);
virtual Type resolveTypeOfContext(DeclContext *dc);
};
/// Generic type resolver that performs complete resolution of dependent
/// types based on a given archetype builder.
///
/// This generic type resolver should be used after all requirements have been
/// introduced into the archetype builder, including inferred requirements,
/// to check the signature of a generic declaration and resolve (for example)
/// all dependent member refers to archetype members.
class CompleteGenericTypeResolver : public GenericTypeResolver {
TypeChecker &TC;
ArchetypeBuilder &Builder;
public:
CompleteGenericTypeResolver(TypeChecker &tc, ArchetypeBuilder &builder)
: TC(tc), Builder(builder) { }
virtual Type resolveGenericTypeParamType(GenericTypeParamType *gp);
virtual Type resolveDependentMemberType(Type baseTy,
DeclContext *DC,
SourceRange baseRange,
ComponentIdentTypeRepr *ref);
virtual Type resolveSelfAssociatedType(Type selfTy,
DeclContext *DC,
AssociatedTypeDecl *assocType);
virtual Type resolveTypeOfContext(DeclContext *dc);
};
} // end namespace swift
#endif