-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathParameterPack.cpp
557 lines (455 loc) · 17.6 KB
/
ParameterPack.cpp
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
//===--- ParameterPack.cpp - Utilities for variadic generics --------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2022 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file implements utilities for substituting type parameter packs
// appearing in pack expansion types.
//
//===----------------------------------------------------------------------===//
#include "swift/AST/ASTContext.h"
#include "swift/AST/Decl.h"
#include "swift/AST/GenericEnvironment.h"
#include "swift/AST/GenericParamList.h"
#include "swift/AST/ParameterList.h"
#include "swift/AST/Type.h"
#include "swift/AST/Types.h"
#include "swift/Basic/Assertions.h"
#include "llvm/ADT/SmallVector.h"
using namespace swift;
/// FV(PackExpansionType(Pattern, Count), N) = FV(Pattern, N+1)
/// FV(PackElementType(Param, M), N) = FV(Param, 0) if M >= N, {} otherwise
/// FV(Param, N) = {Param}
static Type transformTypeParameterPacksRec(
Type t, llvm::function_ref<std::optional<Type>(SubstitutableType *)> fn,
unsigned expansionLevel) {
return t.transformWithPosition(
TypePosition::Invariant,
[&](TypeBase *t, TypePosition p) -> std::optional<Type> {
// If we're already inside N levels of PackExpansionType, and we're
// walking into another PackExpansionType, a type parameter pack
// reference now needs level (N+1) to be free.
if (auto *expansionType = dyn_cast<PackExpansionType>(t)) {
auto countType = expansionType->getCountType();
auto patternType = expansionType->getPatternType();
auto newPatternType = transformTypeParameterPacksRec(
patternType, fn, expansionLevel + 1);
if (patternType.getPointer() != newPatternType.getPointer())
return Type(PackExpansionType::get(patternType, countType));
return Type(expansionType);
}
// A PackElementType with level N reaches past N levels of
// nested PackExpansionType. So a type parameter pack reference
// therein is free if N is greater than or equal to our current
// expansion level.
if (auto *eltType = dyn_cast<PackElementType>(t)) {
if (eltType->getLevel() >= expansionLevel) {
return transformTypeParameterPacksRec(eltType->getPackType(), fn,
/*expansionLevel=*/0);
}
return Type(eltType);
}
// A bare type parameter pack is like a PackElementType with level 0.
if (auto *paramType = dyn_cast<SubstitutableType>(t)) {
if (expansionLevel == 0 && (isa<PackArchetypeType>(paramType) ||
paramType->isRootParameterPack())) {
return fn(paramType);
}
return Type(paramType);
}
return std::nullopt;
});
}
Type Type::transformTypeParameterPacks(
llvm::function_ref<std::optional<Type>(SubstitutableType *)> fn) const {
return transformTypeParameterPacksRec(*this, fn, /*expansionLevel=*/0);
}
namespace {
/// Collects all unique pack type parameters referenced from the pattern type,
/// skipping those captured by nested pack expansion types.
struct PackReferenceCollector: TypeWalker {
llvm::function_ref<bool (Type)> fn;
unsigned expansionLevel;
SmallVector<unsigned, 2> elementLevel;
PackReferenceCollector(llvm::function_ref<bool (Type)> fn)
: fn(fn), expansionLevel(0) {
elementLevel.push_back(0);
}
Action walkToTypePre(Type t) override {
if (t->is<PackExpansionType>()) {
++expansionLevel;
return Action::Continue;
}
if (auto *boundGenericType = dyn_cast<BoundGenericType>(t.getPointer())) {
if (auto parentType = boundGenericType->getParent())
parentType.walk(*this);
for (auto type : boundGenericType->getExpandedGenericArgs())
type.walk(*this);
return Action::SkipNode;
}
if (auto *typeAliasType = dyn_cast<TypeAliasType>(t.getPointer())) {
if (typeAliasType->getDecl()->isGeneric()) {
if (auto parentType = typeAliasType->getParent())
parentType.walk(*this);
for (auto type : typeAliasType->getExpandedGenericArgs())
type.walk(*this);
return Action::SkipNode;
}
}
if (auto *eltType = t->getAs<PackElementType>()) {
elementLevel.push_back(eltType->getLevel());
return Action::Continue;
}
if (elementLevel.back() == expansionLevel) {
if (fn(t))
return Action::Stop;
}
return Action::Continue;
}
Action walkToTypePost(Type t) override {
if (t->is<PackExpansionType>())
--expansionLevel;
if (t->is<PackElementType>())
elementLevel.pop_back();
return Action::Continue;
}
};
}
void TypeBase::walkPackReferences(
llvm::function_ref<bool (Type)> fn) {
Type(this).walk(PackReferenceCollector(fn));
}
void TypeBase::getTypeParameterPacks(
SmallVectorImpl<Type> &rootParameterPacks) {
walkPackReferences([&](Type t) {
if (auto *paramTy = t->getAs<GenericTypeParamType>()) {
if (paramTy->isParameterPack())
rootParameterPacks.push_back(paramTy);
} else if (auto *archetypeTy = t->getAs<PackArchetypeType>()) {
if (archetypeTy->isRoot()) {
rootParameterPacks.push_back(archetypeTy);
} else {
auto *genericEnv = archetypeTy->getGenericEnvironment();
auto paramTy = archetypeTy->getInterfaceType()->getRootGenericParam();
rootParameterPacks.push_back(
genericEnv->mapTypeIntoContext(paramTy));
}
}
return false;
});
}
bool TypeBase::isParameterPack() {
return getDependentMemberRoot()->isRootParameterPack();
}
bool TypeBase::isRootParameterPack() {
Type t(this);
return t->is<GenericTypeParamType>() &&
t->castTo<GenericTypeParamType>()->isParameterPack();
}
PackType *TypeBase::getPackSubstitutionAsPackType() {
if (auto pack = getAs<PackType>()) {
return pack;
} else {
return PackType::getSingletonPackExpansion(this);
}
}
static Type increasePackElementLevelImpl(
Type type, unsigned level, unsigned outerLevel) {
assert(level > 0);
return type.transformRec([&](TypeBase *t) -> std::optional<Type> {
if (auto *elementType = dyn_cast<PackElementType>(t)) {
if (elementType->getLevel() >= outerLevel) {
elementType = PackElementType::get(elementType->getPackType(),
elementType->getLevel() + level);
}
return Type(elementType);
}
if (auto *expansionType = dyn_cast<PackExpansionType>(t)) {
return Type(PackExpansionType::get(
increasePackElementLevelImpl(expansionType->getPatternType(),
level, outerLevel + 1),
expansionType->getCountType()));
}
if (t->isParameterPack() || isa<PackArchetypeType>(t)) {
if (outerLevel == 0)
return Type(PackElementType::get(t, level));
return Type(t);
}
return std::nullopt;
});
}
Type TypeBase::increasePackElementLevel(unsigned level) {
if (level == 0)
return Type(this);
return increasePackElementLevelImpl(Type(this), level, 0);
}
CanType PackExpansionType::getReducedShape() {
auto reducedShape = countType->getReducedShape();
if (reducedShape == getASTContext().TheEmptyTupleType)
return reducedShape;
return CanType(PackExpansionType::get(reducedShape, reducedShape));
}
unsigned TupleType::getNumScalarElements() const {
unsigned n = 0;
for (auto elt : getElements()) {
if (!elt.getType()->is<PackExpansionType>())
++n;
}
return n;
}
bool TupleType::containsPackExpansionType() const {
assert(!hasTypeVariable());
for (auto elt : getElements()) {
auto eltTy = elt.getType();
assert(!eltTy->hasTypeVariable());
if (eltTy->is<PackExpansionType>())
return true;
}
return false;
}
bool CanTupleType::containsPackExpansionTypeImpl(CanTupleType tuple) {
for (auto eltType : tuple.getElementTypes()) {
if (isa<PackExpansionType>(eltType))
return true;
}
return false;
}
bool AnyFunctionType::containsPackExpansionType(ArrayRef<Param> params) {
for (auto param : params) {
auto paramTy = param.getPlainType();
assert(!paramTy->hasTypeVariable());
if (paramTy->is<PackExpansionType>())
return true;
}
return false;
}
bool PackType::containsPackExpansionType() const {
for (auto type : getElementTypes()) {
if (type->is<PackExpansionType>())
return true;
}
return false;
}
template <class T>
static CanPackType getReducedShapeOfPack(const ASTContext &ctx,
const T &elementTypes) {
SmallVector<Type, 4> elts;
elts.reserve(elementTypes.size());
for (auto elt : elementTypes) {
// T... => shape(T)...
if (auto *packExpansionType = elt->template getAs<PackExpansionType>()) {
elts.push_back(packExpansionType->getReducedShape());
continue;
}
// Use () as a placeholder for scalar shape.
assert(!elt->template is<PackArchetypeType>() &&
"Pack archetype outside of a pack expansion");
elts.push_back(ctx.TheEmptyTupleType);
}
return CanPackType(PackType::get(ctx, elts));
}
CanPackType PackType::getReducedShape() {
return getReducedShapeOfPack(getASTContext(), getElementTypes());
}
CanPackType SILPackType::getReducedShape() const {
return getReducedShapeOfPack(getASTContext(), getElementTypes());
}
CanType TypeBase::getReducedShape() {
if (isTypeParameter()) {
auto *genericParam = getRootGenericParam();
if (genericParam->isParameterPack())
return genericParam->getCanonicalType();
// Use () as a placeholder for scalar shape.
return getASTContext().TheEmptyTupleType;
}
if (auto *packArchetype = getAs<PackArchetypeType>())
return packArchetype->getReducedShape();
if (auto *packType = getAs<PackType>())
return packType->getReducedShape();
if (auto *expansionType = getAs<PackExpansionType>())
return expansionType->getReducedShape();
if (auto *silPackType = getAs<SILPackType>()) {
auto can = cast<SILPackType>(silPackType->getCanonicalType());
return can->getReducedShape();
}
SmallVector<Type, 2> rootParameterPacks;
getTypeParameterPacks(rootParameterPacks);
if (!rootParameterPacks.empty())
return rootParameterPacks.front()->getReducedShape();
assert(!isTypeVariableOrMember());
assert(!hasTypeParameter());
// Use () as a placeholder for scalar shape.
return getASTContext().TheEmptyTupleType;
}
unsigned ParameterList::getOrigParamIndex(SubstitutionMap subMap,
unsigned substIndex) const {
unsigned remappedIndex = substIndex;
for (unsigned i = 0, e = size(); i < e; ++i) {
auto *param = get(i);
auto paramType = param->getInterfaceType();
unsigned substCount = 1;
if (auto *packExpansionType = paramType->getAs<PackExpansionType>()) {
auto replacementType = packExpansionType->getCountType().subst(subMap);
if (auto *packType = replacementType->getAs<PackType>()) {
substCount = packType->getNumElements();
}
}
if (remappedIndex < substCount)
return i;
remappedIndex -= substCount;
}
llvm::errs() << "Invalid substituted argument index: " << substIndex << "\n";
subMap.dump(llvm::errs());
dump(llvm::errs());
abort();
}
/// <T...> Foo<T, Pack{Int, String}> => Pack{T..., Int, String}
SmallVector<Type, 2> BoundGenericType::getExpandedGenericArgs() {
// It would be nicer to use genericSig.getInnermostGenericParams() here,
// but that triggers a request cycle if we're in the middle of computing
// the generic signature already.
SmallVector<GenericTypeParamType *, 2> params;
for (auto *paramDecl : getDecl()->getGenericParams()->getParams()) {
params.push_back(paramDecl->getDeclaredInterfaceType()
->castTo<GenericTypeParamType>());
}
return PackType::getExpandedGenericArgs(params, getGenericArgs());
}
/// <T...> Foo<T, Pack{Int, String}> => Pack{T..., Int, String}
SmallVector<Type, 2> TypeAliasType::getExpandedGenericArgs() {
if (!getDecl()->isGeneric())
return SmallVector<Type, 2>();
auto genericSig = getGenericSignature();
return PackType::getExpandedGenericArgs(
genericSig.getInnermostGenericParams(),
getDirectGenericArgs());
}
/// <T...> Pack{T, Pack{Int, String}} => {T..., Int, String}
SmallVector<Type, 2>
PackType::getExpandedGenericArgs(ArrayRef<GenericTypeParamType *> params,
ArrayRef<Type> args) {
SmallVector<Type, 2> wrappedArgs;
assert(params.size() == args.size());
for (unsigned i = 0, e = params.size(); i < e; ++i) {
auto arg = args[i];
if (params[i]->isParameterPack()) {
// FIXME: A temporary fix to make it possible to debug expressions
// with partially resolved variadic generic types. The issue stems
// from the fact that `BoundGenericType` is allowed to have pack
// parameters directly represented by type variables, as soon as
// that is no longer the case this check should be removed.
if (arg->is<TypeVariableType>()) {
wrappedArgs.push_back(arg);
} else {
auto argPackElements = arg->castTo<PackType>()->getElementTypes();
wrappedArgs.append(argPackElements.begin(), argPackElements.end());
}
continue;
}
wrappedArgs.push_back(arg);
}
return wrappedArgs;
}
PackType *PackType::getSingletonPackExpansion(Type param) {
SmallVector<Type, 2> rootParameterPacks;
param->getTypeParameterPacks(rootParameterPacks);
assert(rootParameterPacks.size() >= 1);
auto count = rootParameterPacks[0];
return get(param->getASTContext(), {PackExpansionType::get(param, count)});
}
CanPackType CanPackType::getSingletonPackExpansion(CanType param) {
// Note: You can't just wrap the result in CanPackType() here because
// PackExpansionType has the additional requirement that the count type
// must be a reduced shape.
return cast<PackType>(
PackType::getSingletonPackExpansion(param)
->getCanonicalType());
}
PackExpansionType *PackType::unwrapSingletonPackExpansion() const {
if (getNumElements() == 1) {
if (auto expansion = getElementTypes()[0]->getAs<PackExpansionType>()) {
auto pattern = expansion->getPatternType();
if (pattern->isParameterPack() || pattern->is<PackArchetypeType>())
return expansion;
}
}
return nullptr;
}
bool SILPackType::containsPackExpansionType() const {
for (auto type : getElementTypes()) {
if (isa<PackExpansionType>(type))
return true;
}
return false;
}
CanPackType
CanTupleType::getInducedPackTypeImpl(CanTupleType tuple) {
return getInducedPackTypeImpl(tuple, 0, tuple->getNumElements());
}
CanPackType
CanTupleType::getInducedPackTypeImpl(CanTupleType tuple, unsigned start, unsigned count) {
assert(start + count <= tuple->getNumElements() && "range out of range");
auto &ctx = tuple->getASTContext();
return CanPackType::get(ctx, tuple.getElementTypes().slice(start, count));
}
static CanType getApproximateFormalElementType(const ASTContext &ctx,
CanType loweredEltType) {
CanType formalEltType = TupleType::getEmpty(ctx);
if (auto expansion = dyn_cast<PackExpansionType>(loweredEltType))
formalEltType = CanPackExpansionType::get(formalEltType,
expansion.getCountType());
return formalEltType;
}
template <class Collection>
static CanPackType getApproximateFormalPackType(const ASTContext &ctx,
Collection loweredEltTypes) {
// Build an array of formal element types, but be lazy about it:
// use the original array unless we see an element type that doesn't
// work as a legal formal type.
std::optional<SmallVector<CanType, 4>> formalEltTypes;
for (auto i : indices(loweredEltTypes)) {
auto loweredEltType = loweredEltTypes[i];
bool isLegal = loweredEltType->isLegalFormalType();
// If the type isn't legal as a formal type, substitute the empty
// tuple type (or an invariant expansion of it over the count type).
CanType formalEltType = loweredEltType;
if (!isLegal) {
formalEltType = getApproximateFormalElementType(ctx, loweredEltType);
}
// If we're already building an array, unconditionally append to it.
// Otherwise, if the type isn't legal, build the array up to this
// point and then append. Otherwise, we're still being lazy.
if (formalEltTypes) {
formalEltTypes->push_back(formalEltType);
} else if (!isLegal) {
formalEltTypes.emplace();
formalEltTypes->reserve(loweredEltTypes.size());
formalEltTypes->append(loweredEltTypes.begin(),
loweredEltTypes.begin() + i);
formalEltTypes->push_back(formalEltType);
}
assert(isLegal || formalEltTypes.has_value());
}
// Use the array we built if we made one (if we ever saw a non-legal
// element type).
if (formalEltTypes) {
return CanPackType::get(ctx, *formalEltTypes);
} else {
return CanPackType::get(ctx, loweredEltTypes);
}
}
CanPackType SILPackType::getApproximateFormalPackType() const {
return ::getApproximateFormalPackType(getASTContext(), getElementTypes());
}
CanPackType
CanTupleType::getInducedApproximateFormalPackTypeImpl(CanTupleType tuple) {
return ::getApproximateFormalPackType(tuple->getASTContext(),
tuple.getElementTypes());
}