forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASTScopeSourceRange.cpp
599 lines (524 loc) · 20.2 KB
/
ASTScopeSourceRange.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
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
//===--- ASTScopeSourceRange.cpp - Swift Object-Oriented AST Scope --------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 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 the source range queries for the ASTScopeImpl ontology.
///
//===----------------------------------------------------------------------===//
#include "swift/AST/ASTScope.h"
#include "swift/AST/ASTContext.h"
#include "swift/AST/ASTWalker.h"
#include "swift/AST/Decl.h"
#include "swift/AST/Expr.h"
#include "swift/AST/Initializer.h"
#include "swift/AST/LazyResolver.h"
#include "swift/AST/Module.h"
#include "swift/AST/ParameterList.h"
#include "swift/AST/Pattern.h"
#include "swift/AST/Stmt.h"
#include "swift/AST/TypeRepr.h"
#include "swift/Basic/STLExtras.h"
#include "llvm/Support/Compiler.h"
#include <algorithm>
using namespace swift;
using namespace ast_scope;
static SourceLoc getStartOfFirstParam(ClosureExpr *closure);
SourceRange ASTScopeImpl::widenSourceRangeForIgnoredASTNodes(
const SourceRange range) const {
if (range.isInvalid())
return sourceRangeOfIgnoredASTNodes;
auto r = range;
if (sourceRangeOfIgnoredASTNodes.isValid())
r.widen(sourceRangeOfIgnoredASTNodes);
return r;
}
SourceRange
ASTScopeImpl::widenSourceRangeForChildren(const SourceRange range,
const bool omitAssertions) const {
if (getChildren().empty()) {
assert(omitAssertions || range.Start.isValid());
return range;
}
const auto childStart =
getChildren().front()->getSourceRange(omitAssertions).Start;
const auto childEnd =
getChildren().back()->getSourceRange(omitAssertions).End;
auto childRange = SourceRange(childStart, childEnd);
assert(omitAssertions || childRange.isValid());
if (range.isInvalid())
return childRange;
auto r = range;
r.widen(childRange);
return r;
}
#pragma mark validation
bool ASTScopeImpl::hasValidSourceRange() const {
const auto sourceRange = getSourceRange();
return sourceRange.Start.isValid() && sourceRange.End.isValid() &&
!getSourceManager().isBeforeInBuffer(sourceRange.End,
sourceRange.Start);
}
bool ASTScopeImpl::hasValidSourceRangeOfIgnoredASTNodes() const {
return sourceRangeOfIgnoredASTNodes.isValid();
}
bool ASTScopeImpl::precedesInSource(const ASTScopeImpl *next) const {
if (!hasValidSourceRange() || !next->hasValidSourceRange())
return false;
return !getSourceManager().isBeforeInBuffer(next->getSourceRange().Start,
getSourceRange().End);
}
bool ASTScopeImpl::verifyThatChildrenAreContainedWithin(
const SourceRange range) const {
// assumes children are already in order
if (getChildren().empty())
return true;
const SourceRange rangeOfChildren =
SourceRange(getChildren().front()->getSourceRange().Start,
getChildren().back()->getSourceRange().End);
if (getSourceManager().rangeContains(range, rangeOfChildren))
return true;
auto &out = verificationError() << "children not contained in its parent\n";
if (getChildren().size() == 1) {
out << "\n***Only Child node***\n";
getChildren().front()->print(out);
} else {
out << "\n***First Child node***\n";
getChildren().front()->print(out);
out << "\n***Last Child node***\n";
getChildren().back()->print(out);
}
out << "\n***Parent node***\n";
this->print(out);
abort();
}
bool ASTScopeImpl::verifyThatThisNodeComeAfterItsPriorSibling() const {
auto priorSibling = getPriorSibling();
if (!priorSibling)
return true;
if (priorSibling.get()->precedesInSource(this))
return true;
auto &out = verificationError() << "unexpected out-of-order nodes\n";
out << "\n***Penultimate child node***\n";
priorSibling.get()->print(out);
out << "\n***Last Child node***\n";
print(out);
out << "\n***Parent node***\n";
getParent().get()->print(out);
// llvm::errs() << "\n\nsource:\n"
// << getSourceManager()
// .getRangeForBuffer(
// getSourceFile()->getBufferID().getValue())
// .str();
llvm_unreachable("unexpected out-of-order nodes");
return false;
}
NullablePtr<ASTScopeImpl> ASTScopeImpl::getPriorSibling() const {
auto parent = getParent();
if (!parent)
return nullptr;
auto const &siblingsAndMe = parent.get()->getChildren();
// find myIndex, which is probably the last one
int myIndex = -1;
for (int i = siblingsAndMe.size() - 1; i >= 0; --i) {
if (siblingsAndMe[i] == this) {
myIndex = i;
break;
}
}
assert(myIndex != -1 && "I have been disowned!");
if (myIndex == 0)
return nullptr;
return siblingsAndMe[myIndex - 1];
}
#pragma mark getChildlessSourceRange
SourceRange SpecializeAttributeScope::getChildlessSourceRange(
const bool omitAssertions) const {
return specializeAttr->getRange();
}
SourceRange AbstractFunctionBodyScope::getChildlessSourceRange(
const bool omitAssertions) const {
return decl->getBodySourceRange();
}
SourceRange
TopLevelCodeScope::getChildlessSourceRange(const bool omitAssertions) const {
return decl->getSourceRange();
}
SourceRange
SubscriptDeclScope::getChildlessSourceRange(const bool omitAssertions) const {
return decl->getSourceRange();
}
SourceRange
EnumElementScope::getChildlessSourceRange(const bool omitAssertions) const {
return decl->getSourceRange();
}
SourceRange
WholeClosureScope::getChildlessSourceRange(const bool omitAssertions) const {
return closureExpr->getSourceRange();
}
SourceRange
AbstractStmtScope::getChildlessSourceRange(const bool omitAssertions) const {
return getStmt()->getSourceRange();
}
SourceRange DefaultArgumentInitializerScope::getChildlessSourceRange(
const bool omitAssertions) const {
if (auto *dv = decl->getDefaultValue())
return dv->getSourceRange();
return SourceRange();
}
SourceRange PatternEntryDeclScope::getChildlessSourceRange(
const bool omitAssertions) const {
// TODO: Once rdar://53627317 is accomplished, the following may be able to be
// simplified.
if (!getChildren().empty()) { // why needed???
bool hasOne = false;
getPattern()->forEachVariable([&](VarDecl *) { hasOne = true; });
if (!hasOne)
return SourceRange(); // just the init
if (!getPatternEntry().getInit())
return SourceRange(); // just the var decls
}
return getPatternEntry().getSourceRange();
}
SourceRange PatternEntryInitializerScope::getChildlessSourceRange(
const bool omitAssertions) const {
// See rdar://53921703
// Note: grep for "When the initializer is removed we don't actually clear the
// pointer" because we do!
return initAsWrittenWhenCreated->getSourceRange();
}
SourceRange
VarDeclScope::getChildlessSourceRange(const bool omitAssertions) const {
const auto br = decl->getBracesRange();
return br.isValid() ? br : decl->getSourceRange();
}
SourceRange
GenericParamScope::getChildlessSourceRange(const bool omitAssertions) const {
auto nOrE = holder;
// A protocol's generic parameter list is not written in source, and
// is visible from the start of the body.
if (auto *protoDecl = dyn_cast<ProtocolDecl>(nOrE))
return SourceRange(protoDecl->getBraces().Start, protoDecl->getEndLoc());
auto startLoc = paramList->getSourceRange().Start;
if (startLoc.isInvalid())
startLoc = holder->getStartLoc();
return SourceRange(startLoc, holder->getEndLoc());
}
SourceRange
ASTSourceFileScope::getChildlessSourceRange(const bool omitAssertions) const {
if (auto bufferID = SF->getBufferID()) {
auto charRange = getSourceManager().getRangeForBuffer(*bufferID);
return SourceRange(charRange.getStart(), charRange.getEnd());
}
if (SF->Decls.empty())
return SourceRange();
// Use the source ranges of the declarations in the file.
return SourceRange(SF->Decls.front()->getStartLoc(),
SF->Decls.back()->getEndLoc());
}
SourceRange GenericTypeOrExtensionScope::getChildlessSourceRange(
const bool omitAssertions) const {
return portion->getChildlessSourceRangeOf(this, omitAssertions);
}
SourceRange GenericTypeOrExtensionWholePortion::getChildlessSourceRangeOf(
const GenericTypeOrExtensionScope *scope, const bool omitAssertions) const {
auto *d = scope->getDecl();
auto r = d->getSourceRangeIncludingAttrs();
if (r.Start.isValid()) {
assert(r.End.isValid());
return r;
}
return d->getSourceRange();
}
SourceRange GenericTypeOrExtensionWherePortion::getChildlessSourceRangeOf(
const GenericTypeOrExtensionScope *scope, const bool omitAssertions) const {
return scope->getGenericContext()->getTrailingWhereClause()->getSourceRange();
}
SourceRange IterableTypeBodyPortion::getChildlessSourceRangeOf(
const GenericTypeOrExtensionScope *scope, const bool omitAssertions) const {
auto *d = scope->getDecl();
if (auto *nt = dyn_cast<NominalTypeDecl>(d))
return nt->getBraces();
if (auto *e = dyn_cast<ExtensionDecl>(d))
return e->getBraces();
if (omitAssertions)
return SourceRange();
llvm_unreachable("No body!");
}
SourceRange AbstractFunctionDeclScope::getChildlessSourceRange(
const bool omitAssertions) const {
// For a get/put accessor all of the parameters are implicit, so start
// them at the start location of the accessor.
auto r = decl->getSourceRangeIncludingAttrs();
if (r.Start.isValid()) {
assert(r.End.isValid());
return r;
}
return decl->getBodySourceRange();
}
SourceRange
ParameterListScope::getChildlessSourceRange(const bool omitAssertions) const {
const auto rangeForGoodInput = getSourceRangeOfEnclosedParams(omitAssertions);
auto r = SourceRange(rangeForGoodInput.Start,
fixupEndForBadInput(rangeForGoodInput));
assert(getSourceManager().rangeContains(
getParent().get()->getChildlessSourceRange(true), r) &&
"Parameters not within function?!");
return r;
}
SourceLoc ParameterListScope::fixupEndForBadInput(
const SourceRange rangeForGoodInput) const {
const auto s = rangeForGoodInput.Start;
const auto e = rangeForGoodInput.End;
return getSourceManager().isBeforeInBuffer(s, e) ? e : s;
}
SourceRange
ForEachPatternScope::getChildlessSourceRange(const bool omitAssertions) const {
// The scope of the pattern extends from the 'where' expression (if present)
// until the end of the body.
if (stmt->getWhere())
return SourceRange(stmt->getWhere()->getStartLoc(),
stmt->getBody()->getEndLoc());
// Otherwise, scope of the pattern covers the body.
return stmt->getBody()->getSourceRange();
}
SourceRange
CatchStmtScope::getChildlessSourceRange(const bool omitAssertions) const {
// The scope of the pattern extends from the 'where' (if present)
// to the end of the body.
if (stmt->getGuardExpr())
return SourceRange(stmt->getWhereLoc(), stmt->getBody()->getEndLoc());
// Otherwise, the scope of the pattern encompasses the body.
return stmt->getBody()->getSourceRange();
}
SourceRange
CaseStmtScope::getChildlessSourceRange(const bool omitAssertions) const {
// The scope of the case statement begins at the first guard expression,
// if there is one, and extends to the end of the body.
// FIXME: Figure out what to do about multiple pattern bindings. We might
// want a more restrictive rule in those cases.
for (const auto &caseItem : stmt->getCaseLabelItems()) {
if (auto guardExpr = caseItem.getGuardExpr())
return SourceRange(guardExpr->getStartLoc(),
stmt->getBody()->getEndLoc());
}
// Otherwise, it covers the body.
return stmt->getBody()
->getSourceRange(); // The scope of the case statement begins
}
SourceRange
BraceStmtScope::getChildlessSourceRange(const bool omitAssertions) const {
// The brace statements that represent closures start their scope at the
// 'in' keyword, when present.
if (auto closure = parentClosureIfAny()) {
if (closure.get()->getInLoc().isValid())
return SourceRange(closure.get()->getInLoc(), stmt->getEndLoc());
}
return stmt->getSourceRange();
}
SourceRange ConditionalClauseScope::getChildlessSourceRange(
const bool omitAssertions) const {
// From the start of this particular condition to the start of the
// then/body part.
const auto startLoc = getStmtConditionElement().getStartLoc();
return startLoc.isValid()
? SourceRange(startLoc, endLoc)
: SourceRange(endLoc);
}
SourceRange ConditionalClausePatternUseScope::getChildlessSourceRange(
const bool omitAssertions) const {
// For a guard continuation, the scope extends from the end of the 'else'
// to the end of the continuation.
return SourceRange(startLoc);
}
SourceRange
CaptureListScope::getChildlessSourceRange(const bool omitAssertions) const {
auto *const closure = expr->getClosureBody();
return SourceRange(expr->getStartLoc(), getStartOfFirstParam(closure));
}
SourceRange ClosureParametersScope::getChildlessSourceRange(
const bool omitAssertions) const {
if (!omitAssertions)
assert(closureExpr->getInLoc().isValid() &&
"We don't create these if no in loc");
return SourceRange(getStartOfFirstParam(closureExpr),
closureExpr->getInLoc());
}
SourceRange
ClosureBodyScope::getChildlessSourceRange(const bool omitAssertions) const {
if (closureExpr->getInLoc().isValid())
return SourceRange(closureExpr->getInLoc(), closureExpr->getEndLoc());
return closureExpr->getSourceRange();
}
SourceRange AttachedPropertyWrapperScope::getChildlessSourceRange(
const bool omitAssertions) const {
return sourceRangeWhenCreated;
}
SourceRange LookupParentDiversionScope::getChildlessSourceRange(
const bool omitAssertions) const {
return SourceRange(startLoc);
}
#pragma mark source range caching
SourceRange ASTScopeImpl::getSourceRange(const bool omitAssertions) const {
if (!isSourceRangeCached(omitAssertions))
cacheSourceRangeOfMeAndDescendants(omitAssertions);
return *cachedSourceRange;
}
bool ASTScopeImpl::isSourceRangeCached(const bool omitAssertions) const {
const bool isCached = cachedSourceRange.hasValue();
assert(omitAssertions || isCached || ensureNoAncestorsSourceRangeIsCached());
return isCached;
}
bool ASTScopeImpl::ensureNoAncestorsSourceRangeIsCached() const {
if (const auto *const p = getParent().getPtrOrNull()) {
auto r = !p->isSourceRangeCached(true) &&
p->ensureNoAncestorsSourceRangeIsCached();
if (!r)
llvm_unreachable("found a violation");
return true;
}
return true;
}
void ASTScopeImpl::cacheSourceRangeOfMeAndDescendants(
const bool omitAssertions) const {
// In order to satisfy the invariant that, if my range is uncached,
// my parent's range is uncached, (which is needed to optimize invalidation
// by obviating the need to uncache all the way to the root every time),
// when caching a range, must ensure all children's ranges are cached.
for (auto *c : getChildren())
c->cacheSourceRangeOfMeAndDescendants(omitAssertions);
cachedSourceRange = getUncachedSourceRange(omitAssertions);
}
SourceRange
ASTScopeImpl::getUncachedSourceRange(const bool omitAssertions) const {
const SourceRange rangeForLazyCheck = getASTContext().LangOpts.LazyASTScopes
? sourceRangeForDeferredExpansion()
: SourceRange();
(void)rangeForLazyCheck;
const auto childlessRange = getChildlessSourceRange(omitAssertions);
const auto rangeIncludingIgnoredNodes =
widenSourceRangeForIgnoredASTNodes(childlessRange);
assert(rangeForLazyCheck.isInvalid() ||
rangeForLazyCheck == rangeIncludingIgnoredNodes);
auto uncachedSourceRange =
widenSourceRangeForChildren(rangeIncludingIgnoredNodes, omitAssertions);
assert(rangeForLazyCheck.isInvalid() ||
rangeForLazyCheck == uncachedSourceRange);
return uncachedSourceRange;
}
void ASTScopeImpl::clearCachedSourceRangesOfMeAndAncestors() {
// An optimization: if my range isn't cached, my ancestors must not be
if (!isSourceRangeCached())
return;
cachedSourceRange = None;
if (auto p = getParent())
p.get()->clearCachedSourceRangesOfMeAndAncestors();
}
#pragma mark ignored nodes and compensating for InterpolatedStringLiteralExprs and EditorPlaceHolders
namespace {
class EffectiveEndFinder : public ASTWalker {
SourceLoc end;
const SourceManager &SM;
public:
EffectiveEndFinder(const SourceManager &SM) : SM(SM) {}
std::pair<bool, Expr *> walkToExprPre(Expr *E) {
if (!E)
return {true, E};
if (auto *isl = dyn_cast<InterpolatedStringLiteralExpr>(E)) {
if (end.isInvalid() ||
SM.isBeforeInBuffer(end, isl->getTrailingQuoteLoc()))
end = isl->getTrailingQuoteLoc();
} else if (auto *epl = dyn_cast<EditorPlaceholderExpr>(E)) {
if (end.isInvalid() ||
SM.isBeforeInBuffer(end, epl->getTrailingAngleBracketLoc()))
end = epl->getTrailingAngleBracketLoc();
}
return ASTWalker::walkToExprPre(E);
}
SourceLoc getTrailingQuoteLoc() const { return end; }
};
} // namespace
// FIXME: Alter how EditorPlaceHolder and InterpolgatedStringLiteralExpr are
// parsed so getSourceRange is enough.
SourceRange ASTScopeImpl::getEffectiveSourceRange(const ASTNode n) const {
if (const auto *d = n.dyn_cast<Decl *>())
return d->getSourceRange();
if (const auto *s = n.dyn_cast<Stmt *>())
return s->getSourceRange();
auto *e = n.dyn_cast<Expr *>();
assert(e);
EffectiveEndFinder finder(getSourceManager());
e->walk(finder);
return SourceRange(e->getLoc(), finder.getTrailingQuoteLoc().isValid()
? finder.getTrailingQuoteLoc()
: e->getEndLoc());
}
void ASTScopeImpl::widenSourceRangeForIgnoredASTNode(const ASTNode n) {
// The pattern scopes will include the source ranges for VarDecls.
// Doing the default here would cause a pattern initializer scope's range
// to overlap the pattern use scope's range.
if (n.isDecl(DeclKind::Var))
return;
SourceRange r = getEffectiveSourceRange(n);
if (r.isInvalid())
return;
if (sourceRangeOfIgnoredASTNodes.isInvalid())
sourceRangeOfIgnoredASTNodes = r;
else
sourceRangeOfIgnoredASTNodes.widen(r);
}
static SourceLoc getStartOfFirstParam(ClosureExpr *closure) {
if (auto *parms = closure->getParameters()) {
if (parms->size())
return parms->get(0)->getStartLoc();
}
if (closure->getInLoc().isValid())
return closure->getInLoc();
if (closure->getBody())
return closure->getBody()->getLBraceLoc();
return closure->getStartLoc();
}
#pragma mark getSourceRangeOfEnclosedParams
SourceRange
ASTScopeImpl::getSourceRangeOfEnclosedParams(const bool omitAssertions) const {
return getParent().get()->getSourceRangeOfEnclosedParams(omitAssertions);
}
SourceRange
EnumElementScope::getSourceRangeOfEnclosedParams(bool omitAssertions) const {
auto *pl = decl->getParameterList();
return pl ? pl->getSourceRange() : SourceRange();
}
SourceRange SubscriptDeclScope::getSourceRangeOfEnclosedParams(
const bool omitAssertions) const {
auto r = SourceRange(decl->getIndices()->getLParenLoc(), decl->getEndLoc());
// Because of "subscript(x: MyStruct#^PARAM_1^#) -> Int { return 0 }"
// Cannot just use decl->getEndLoc()
r.widen(decl->getIndices()->getRParenLoc());
return r;
}
SourceRange AbstractFunctionDeclScope::getSourceRangeOfEnclosedParams(
const bool omitAssertions) const {
const auto s = getParamsSourceLoc(decl);
const auto e = getChildlessSourceRange(omitAssertions).End;
return s.isInvalid() || e.isInvalid() ? SourceRange() : SourceRange(s, e);
}
SourceLoc
AbstractFunctionDeclScope::getParamsSourceLoc(AbstractFunctionDecl *decl) {
if (auto *c = dyn_cast<ConstructorDecl>(decl))
return c->getParameters()->getLParenLoc();
if (auto *dd = dyn_cast<DestructorDecl>(decl))
return dd->getNameLoc();
auto *fd = cast<FuncDecl>(decl);
// clang-format off
return isa<AccessorDecl>(fd) ? fd->getLoc()
: fd->isDeferBody() ? fd->getNameLoc()
: fd->getParameters()->getLParenLoc();
// clang-format on
}