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 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
|
//===--- PCMacro.cpp - PCMacro --------------------------------------------===//
//
// 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 'program counter simulation' for Swift.
// Based off the PlaygroundTransform, PCMacro instruments code to call
// functions at times that a debugger would show the program counter move.
// It can be used to collect and display information about the flow of control
// through Swift code in "live coding" environments like Playgrounds without
// resorting to more heavyweight mechanisms like profiling.
//
// More specifically, this transformation inserts calls to visible functions
// with these names and signatures (other integer types should work too):
//
// func __builtin_pc_before(
// _ startLine: Int, _ endLine: Int,
// _ startColumn: Int, _ endColumn: Int,
// _ moduleID: Int, _ fileID: Int
// ) -> Void
// func __builtin_pc_after(
// _ startLine: Int, _ endLine: Int,
// _ startColumn: Int, _ endColumn: Int,
// _ moduleID: Int, _ fileID: Int
// ) -> Void
//
// The `startLine`, `endLine`, `startColumn`, and `endColumn` parameters are
// passed 1-based integer literals; 0 is used for invalid (i.e.
// compiler-generated) code. The `moduleID` and `fileID` parameters are passed
// the values of visible variables or constants named
// `__builtin_pg_module_<module name>` and
// `__builtin_pg_file_<file base name>`, or an integer literal 0 if suitable
// variables are not found.
//
// The transform inserts these calls before and after each statement, as well
// as before and after expressions nested inside statements, such as `if` and
// `while` conditions and `var` and `let` initial values.
//
//===----------------------------------------------------------------------===//
#include "InstrumenterSupport.h"
#include "swift/Subsystems.h"
#include "swift/AST/ASTContext.h"
#include "swift/AST/Decl.h"
#include "swift/AST/Expr.h"
#include "swift/AST/ParameterList.h"
#include "swift/AST/Module.h"
#include "swift/AST/Pattern.h"
#include "swift/AST/SourceFile.h"
#include "swift/AST/Stmt.h"
using namespace swift;
using namespace swift::instrumenter_support;
//===----------------------------------------------------------------------===//
// performPCMacro
//===----------------------------------------------------------------------===//
namespace {
class Instrumenter : InstrumenterBase {
private:
unsigned &TmpNameIndex;
DeclNameRef LogBeforeName;
DeclNameRef LogAfterName;
public:
Instrumenter(ASTContext &C, DeclContext *DC, unsigned &TmpNameIndex)
: InstrumenterBase(C, DC), TmpNameIndex(TmpNameIndex),
LogBeforeName(C.getIdentifier("__builtin_pc_before")),
LogAfterName(C.getIdentifier("__builtin_pc_after")) {}
Stmt *transformStmt(Stmt *S) {
switch (S->getKind()) {
default:
return S;
case StmtKind::Brace:
return transformBraceStmt(cast<BraceStmt>(S));
case StmtKind::Defer:
return transformDeferStmt(cast<DeferStmt>(S));
case StmtKind::If:
return transformIfStmt(cast<IfStmt>(S));
case StmtKind::Guard:
return transformGuardStmt(cast<GuardStmt>(S));
case StmtKind::While: {
return transformWhileStmt(cast<WhileStmt>(S));
}
case StmtKind::RepeatWhile: {
return transformRepeatWhileStmt(cast<RepeatWhileStmt>(S));
}
case StmtKind::ForEach: {
return transformForEachStmt(cast<ForEachStmt>(S));
}
case StmtKind::Switch: {
return transformSwitchStmt(cast<SwitchStmt>(S));
}
case StmtKind::Do:
return transformDoStmt(llvm::cast<DoStmt>(S));
case StmtKind::DoCatch:
return transformDoCatchStmt(cast<DoCatchStmt>(S));
}
}
void transformStmtCondition(StmtCondition SC, SourceLoc StartLoc) {
// Right now, only handle if statements with one condition
if (SC.size() == 1) {
StmtConditionElement *SCE = SC.begin();
switch (SCE->getKind()) {
case StmtConditionElement::ConditionKind::CK_Boolean: {
Expr *E = SCE->getBoolean();
SourceLoc EndLoc = E->getEndLoc();
if (StartLoc.isValid() && EndLoc.isValid()) {
Expr *NE = buildInlineLoggerCall({StartLoc, EndLoc}, E);
SCE->setBoolean(NE);
}
} break;
case StmtConditionElement::ConditionKind::CK_PatternBinding: {
Expr *E = SCE->getInitializer();
SourceLoc EndLoc = E->getEndLoc();
if (StartLoc.isValid() && EndLoc.isValid()) {
Expr *NE = buildInlineLoggerCall({StartLoc, EndLoc}, E);
SCE->setInitializer(NE);
}
} break;
default:;
}
}
}
// transform*() return their input if it's unmodified,
// or a modified copy of their input otherwise.
IfStmt *transformIfStmt(IfStmt *IS) {
StmtCondition SC = IS->getCond();
transformStmtCondition(SC, IS->getStartLoc());
IS->setCond(SC); // FIXME: is setting required?..
if (auto *TS = IS->getThenStmt()) {
auto *NTS = transformStmt(TS);
if (NTS != TS) {
IS->setThenStmt(cast<BraceStmt>(NTS));
}
}
if (Stmt *ES = IS->getElseStmt()) {
SourceLoc ElseLoc = IS->getElseLoc(); // FIXME: got to pass this back into
// transformStmt if the else stmt is
// an IfStmt. Then we prepend this
// range to the ifstmt highlight.
// See the elseif.swift test.
Stmt *NES = transformStmt(ES);
if (ElseLoc.isValid()) {
if (auto *BS = dyn_cast<BraceStmt>(NES)) {
BraceStmt *NBS = prependLoggerCall(BS, ElseLoc);
if (NBS != ES) {
IS->setElseStmt(NBS);
}
} else if (auto *EIS = dyn_cast<IfStmt>(NES)) {
// FIXME: here we should use the old range to show a better highlight
// (including the previous else)
if (EIS != ES) {
IS->setElseStmt(EIS);
}
} else {
llvm_unreachable(
"IfStmt else stmts must be either IfStmt or BraceStmt");
}
} else {
if (NES != ES) {
IS->setElseStmt(NES);
}
}
}
return IS;
}
GuardStmt *transformGuardStmt(GuardStmt *GS) {
StmtCondition SC = GS->getCond();
transformStmtCondition(SC, GS->getStartLoc());
GS->setCond(SC);
if (BraceStmt *BS = GS->getBody())
GS->setBody(transformBraceStmt(BS));
return GS;
}
WhileStmt *transformWhileStmt(WhileStmt *WS) {
StmtCondition SC = WS->getCond();
transformStmtCondition(SC, WS->getStartLoc());
WS->setCond(SC);
if (Stmt *B = WS->getBody()) {
Stmt *NB = transformStmt(B);
if (NB != B) {
WS->setBody(NB);
}
}
return WS;
}
RepeatWhileStmt *transformRepeatWhileStmt(RepeatWhileStmt *RWS) {
if (Stmt *B = RWS->getBody()) {
Stmt *NB = transformStmt(B);
if (NB != B) {
RWS->setBody(NB);
}
}
return RWS;
}
ForEachStmt *transformForEachStmt(ForEachStmt *FES) {
if (BraceStmt *B = FES->getBody()) {
BraceStmt *NB = transformBraceStmt(B);
// point at the for stmt, to look nice
SourceLoc StartLoc = FES->getStartLoc();
SourceLoc EndLoc = FES->getParsedSequence()->getEndLoc();
// FIXME: get the 'end' of the for stmt
// if (FD->getResultTypeRepr()) {
// EndLoc = FD->getResultTypeSourceRange().End;
// } else {
// EndLoc = FD->getParameters()->getSourceRange().End;
// }
if (StartLoc.isValid() && EndLoc.isValid()) {
BraceStmt *NNB = prependLoggerCall(NB, {StartLoc, EndLoc});
if (NNB != B) {
FES->setBody(NNB);
}
} else {
if (NB != B) {
FES->setBody(NB);
}
}
}
return FES;
}
SwitchStmt *transformSwitchStmt(SwitchStmt *SS) {
// Get the subject range (and switch keyword) and begin by pointing at that
// range. Then stop pointing at it (for now, until we can replace the
// switch subject expr).
// Insert both these stmts before the SwitchStmt.
SourceLoc StartLoc = SS->getStartLoc();
SourceLoc EndLoc = SS->getSubjectExpr()->getEndLoc();
for (CaseStmt *CS : SS->getCases()) {
if (Stmt *S = CS->getBody()) {
if (auto *B = dyn_cast<BraceStmt>(S)) {
BraceStmt *NB = transformBraceStmt(B);
// Lets insert a before and after log pointing at the case statement
// at the start of the body (just like in for loops.
BraceStmt *NNB = nullptr;
SourceRange CaseRange = CS->getLabelItemsRange();
if (CaseRange.isValid()) {
NNB = prependLoggerCall(NB, CaseRange);
} else {
NNB = NB;
}
// Now we prepend the switch log, so that it looks like switch came
// before case
BraceStmt *NNNB = nullptr;
if (StartLoc.isValid() && EndLoc.isValid()) {
NNNB = prependLoggerCall(NNB, {StartLoc, EndLoc});
} else {
NNNB = NNB;
}
if (NNNB != B) {
CS->setBody(NNNB);
}
}
}
}
return SS;
}
DoStmt *transformDoStmt(DoStmt *DS) {
if (auto *B = dyn_cast_or_null<BraceStmt>(DS->getBody())) {
BraceStmt *NB = transformBraceStmt(B);
if (NB != B) {
DS->setBody(NB);
}
}
return DS;
}
DoCatchStmt *transformDoCatchStmt(DoCatchStmt *DCS) {
if (auto *B = dyn_cast_or_null<BraceStmt>(DCS->getBody())) {
BraceStmt *NB = transformBraceStmt(B);
if (NB != B) {
DCS->setBody(NB);
}
}
for (CaseStmt *C : DCS->getCatches()) {
if (auto *CB = dyn_cast_or_null<BraceStmt>(C->getBody())) {
BraceStmt *NCB = transformBraceStmt(CB);
if (NCB != CB) {
C->setBody(NCB);
}
}
}
return DCS;
}
DeferStmt *transformDeferStmt(DeferStmt *DS) {
if (auto *FD = DS->getTempDecl()) {
// Temporarily unmark the DeferStmt's FuncDecl as implicit so it is
// transformed (as typically implicit Decls are skipped by the
// transformer).
auto Implicit = FD->isImplicit();
FD->setImplicit(false);
auto *D = transformDecl(FD);
D->setImplicit(Implicit);
assert(D == FD);
}
return DS;
}
Decl *transformDecl(Decl *D) {
if (D->isImplicit())
return D;
if (auto *FD = dyn_cast<FuncDecl>(D)) {
if (BraceStmt *B = FD->getTypecheckedBody()) {
const ParameterList *PL = FD->getParameters();
BraceStmt *NB = transformBraceStmt(B, PL);
// Since it would look strange going straight to the first line in a
// function body, we throw in a before/after pointing at the function
// decl at the start of the transformed body
SourceLoc StartLoc = FD->getStartLoc();
SourceLoc EndLoc = SourceLoc();
if (FD->getResultTypeRepr()) {
EndLoc = FD->getResultTypeSourceRange().End;
} else {
EndLoc = FD->getParameters()->getSourceRange().End;
}
if (EndLoc.isValid())
NB = prependLoggerCall(NB, {StartLoc, EndLoc});
if (NB != B) {
FD->setBody(NB, AbstractFunctionDecl::BodyKind::TypeChecked);
TypeChecker::checkFunctionEffects(FD);
}
}
} else if (auto *NTD = dyn_cast<NominalTypeDecl>(D)) {
for (Decl *Member : NTD->getMembers()) {
transformDecl(Member);
}
}
return D;
}
BraceStmt *transformBraceStmt(BraceStmt *BS,
const ParameterList *PL = nullptr,
bool TopLevel = false) override {
ArrayRef<ASTNode> OriginalElements = BS->getElements();
SmallVector<swift::ASTNode, 3> Elements(OriginalElements.begin(),
OriginalElements.end());
for (size_t EI = 0; EI != Elements.size(); ++EI) {
swift::ASTNode &Element = Elements[EI];
if (auto *E = Element.dyn_cast<Expr *>()) {
E->walk(CF);
Added<Stmt *> LogBefore = buildLoggerCall(LogBeforeName, E->getSourceRange());
Added<Stmt *> LogAfter = buildLoggerCall(LogAfterName, E->getSourceRange());
if (*LogBefore && *LogAfter) {
Elements[EI] = *LogBefore;
Elements.insert(Elements.begin() + (EI + 1), E);
Elements.insert(Elements.begin() + (EI + 2), *LogAfter);
EI += 2;
}
} else if (auto *S = Element.dyn_cast<Stmt *>()) {
S->walk(CF);
if (auto *RS = dyn_cast<ReturnStmt>(S)) {
if (RS->hasResult()) {
std::pair<PatternBindingDecl *, VarDecl *> PV =
buildPatternAndVariable(RS->getResult());
SourceLoc ResultStartLoc = RS->getResult()->getStartLoc();
DeclRefExpr *DRE = new (Context) DeclRefExpr(
ConcreteDeclRef(PV.second),
ResultStartLoc.isValid() ? DeclNameLoc(ResultStartLoc)
: DeclNameLoc(),
true, // implicit
AccessSemantics::Ordinary, RS->getResult()->getType());
ReturnStmt *NRS = ReturnStmt::createImplicit(Context, DRE);
Added<Stmt *> LogBefore =
buildLoggerCall(LogBeforeName, RS->getSourceRange());
Added<Stmt *> LogAfter =
buildLoggerCall(LogAfterName, RS->getSourceRange());
if (*LogBefore && *LogAfter) {
Elements[EI] = *LogBefore;
Elements.insert(Elements.begin() + (EI + 1), PV.first);
Elements.insert(Elements.begin() + (EI + 2), PV.second);
Elements.insert(Elements.begin() + (EI + 3), *LogAfter);
Elements.insert(Elements.begin() + (EI + 4), NRS);
EI += 4;
}
} else {
Added<Stmt *> LogBefore =
buildLoggerCall(LogBeforeName, RS->getSourceRange());
Added<Stmt *> LogAfter =
buildLoggerCall(LogAfterName, RS->getSourceRange());
if (*LogBefore && *LogAfter) {
Elements[EI] = *LogBefore;
Elements.insert(Elements.begin() + (EI + 1), *LogAfter);
Elements.insert(Elements.begin() + (EI + 2), RS);
EI += 2;
}
}
} else if (auto *CS = dyn_cast<ContinueStmt>(S)) {
Added<Stmt *> LogBefore = buildLoggerCall(LogBeforeName, CS->getSourceRange());
Added<Stmt *> LogAfter = buildLoggerCall(LogAfterName, CS->getSourceRange());
if (*LogBefore && *LogAfter) {
Elements[EI] = *LogBefore;
Elements.insert(Elements.begin() + (EI + 1), *LogAfter);
Elements.insert(Elements.begin() + (EI + 2), CS);
EI += 2;
}
} else if (auto *BS = dyn_cast<BreakStmt>(S)) {
Added<Stmt *> LogBefore = buildLoggerCall(LogBeforeName, BS->getSourceRange());
Added<Stmt *> LogAfter = buildLoggerCall(LogAfterName, BS->getSourceRange());
if (*LogBefore && *LogAfter) {
Elements[EI] = *LogBefore;
Elements.insert(Elements.begin() + (EI + 1), *LogAfter);
Elements.insert(Elements.begin() + (EI + 2), BS);
EI += 2;
}
} else if (auto *FS = dyn_cast<FallthroughStmt>(S)) {
Added<Stmt *> LogBefore = buildLoggerCall(LogBeforeName, FS->getSourceRange());
Added<Stmt *> LogAfter = buildLoggerCall(LogAfterName, FS->getSourceRange());
if (*LogBefore && *LogAfter) {
Elements[EI] = *LogBefore;
Elements.insert(Elements.begin() + (EI + 1), *LogAfter);
Elements.insert(Elements.begin() + (EI + 2), FS);
EI += 2;
}
} else {
Stmt *NS = transformStmt(S);
if (NS != S) {
Elements[EI] = NS;
}
}
} else if (auto *D = Element.dyn_cast<Decl *>()) {
D->walk(CF);
if (auto *PBD = dyn_cast<PatternBindingDecl>(D)) {
// FIXME: Should iterate all var decls
if (VarDecl *VD = PBD->getSingleVar()) {
if (VD->getParentExecutableInitializer()) {
SourceRange SR = PBD->getSourceRange();
if (!SR.isValid()) {
SR = PBD->getOriginalInitRange(0);
}
Added<Stmt *> LogBefore = buildLoggerCall(LogBeforeName, SR);
Added<Stmt *> LogAfter = buildLoggerCall(LogAfterName, SR);
if (*LogBefore && *LogAfter) {
Elements[EI] = *LogBefore;
Elements.insert(Elements.begin() + (EI + 1), D);
Elements.insert(Elements.begin() + (EI + 2), *LogAfter);
EI += 2;
}
}
}
} else {
transformDecl(D);
}
}
}
return swift::BraceStmt::create(Context, BS->getLBraceLoc(), Elements,
BS->getRBraceLoc());
}
std::pair<PatternBindingDecl *, VarDecl *>
buildPatternAndVariable(Expr *InitExpr) {
SmallString<16> NameBuf;
(Twine("pctmp") + Twine(TmpNameIndex)).toVector(NameBuf);
++TmpNameIndex;
Expr *MaybeLoadInitExpr = nullptr;
if (LValueType *LVT = InitExpr->getType()->getAs<LValueType>()) {
MaybeLoadInitExpr =
new (Context) LoadExpr(InitExpr, LVT->getObjectType());
} else {
MaybeLoadInitExpr = InitExpr;
}
VarDecl *VD =
new (Context) VarDecl(/*IsStatic*/false, VarDecl::Introducer::Let,
SourceLoc(), Context.getIdentifier(NameBuf),
TypeCheckDC);
VD->setInterfaceType(MaybeLoadInitExpr->getType()->mapTypeOutOfContext());
VD->setImplicit();
NamedPattern *NP = NamedPattern::createImplicit(Context, VD, VD->getTypeInContext());
PatternBindingDecl *PBD = PatternBindingDecl::createImplicit(
Context, StaticSpellingKind::None, NP, MaybeLoadInitExpr, TypeCheckDC);
return std::make_pair(PBD, VD);
}
// Puts a pair of before/after calls at the start of the body, pointing at
// that range.
BraceStmt *prependLoggerCall(BraceStmt *BS, SourceRange SR) {
Added<Stmt *> Before = buildLoggerCall(LogBeforeName, SR);
Added<Stmt *> After = buildLoggerCall(LogAfterName, SR);
ArrayRef<ASTNode> OriginalElements = BS->getElements();
SmallVector<swift::ASTNode, 3> Elements(OriginalElements.begin(),
OriginalElements.end());
Elements.insert(Elements.begin(), {*Before, *After});
return swift::BraceStmt::create(Context, BS->getLBraceLoc(), Elements,
BS->getRBraceLoc());
}
// Takes an existing Expr and builds an expr that calls before, stores the
// return value of the expr, calls after, then returns that return value.
Expr *buildInlineLoggerCall(SourceRange SR, Expr *E) {
if (!SR.isValid()) {
return E;
}
std::pair<unsigned, unsigned> StartLC =
Context.SourceMgr.getPresumedLineAndColumnForLoc(SR.Start);
std::pair<unsigned, unsigned> EndLC =
Context.SourceMgr.getPresumedLineAndColumnForLoc(
Lexer::getLocForEndOfToken(Context.SourceMgr, SR.End));
Expr *StartLine = IntegerLiteralExpr::createFromUnsigned(Context, StartLC.first, SR.Start);
Expr *EndLine = IntegerLiteralExpr::createFromUnsigned(Context, EndLC.first, SR.End);
Expr *StartColumn = IntegerLiteralExpr::createFromUnsigned(Context, StartLC.second, SR.Start);
Expr *EndColumn = IntegerLiteralExpr::createFromUnsigned(Context, EndLC.second, SR.End);
Expr *ModuleExpr = buildIDArgumentExpr(ModuleIdentifier, SR);
Expr *FileExpr = buildIDArgumentExpr(FileIdentifier, SR);
Expr *LoggerArgs[] = {
StartLine, EndLine, StartColumn, EndColumn, ModuleExpr, FileExpr
};
UnresolvedDeclRefExpr *BeforeLoggerRef = new (Context)
UnresolvedDeclRefExpr(LogBeforeName,
DeclRefKind::Ordinary, DeclNameLoc(SR.End));
BeforeLoggerRef->setImplicit(true);
ApplyExpr *BeforeLoggerCall = CallExpr::createImplicit(
Context, BeforeLoggerRef,
ArgumentList::forImplicitUnlabeled(Context, LoggerArgs));
Added<ApplyExpr *> AddedBeforeLogger(BeforeLoggerCall);
if (!doTypeCheck(Context, TypeCheckDC, AddedBeforeLogger)) {
// typically due to 'cannot find '__builtin_pc_before' in scope'
return E; // return E, it will be used in recovering from TC failure
}
UnresolvedDeclRefExpr *AfterLoggerRef = new (Context)
UnresolvedDeclRefExpr(LogAfterName,
DeclRefKind::Ordinary, DeclNameLoc(SR.End));
AfterLoggerRef->setImplicit(true);
ApplyExpr *AfterLoggerCall = CallExpr::createImplicit(
Context, AfterLoggerRef,
ArgumentList::forImplicitUnlabeled(Context, LoggerArgs));
Added<ApplyExpr *> AddedAfterLogger(AfterLoggerCall);
if (!doTypeCheck(Context, TypeCheckDC, AddedAfterLogger)) {
// typically due to 'cannot find '__builtin_pc_after' in scope'
return E; // return E, it will be used in recovering from TC failure
}
llvm::SmallVector<Expr *, 3> TupleArgs{};
TupleArgs.append({*AddedBeforeLogger, E, *AddedAfterLogger});
SmallVector<Identifier, 3> ThreeArgLabels(TupleArgs.size(), Identifier());
TupleExpr *Tup =
TupleExpr::createImplicit(Context, TupleArgs, ThreeArgLabels);
SmallVector<TupleTypeElt, 3> TupleTypes{};
TupleTypes.append({TupleTypeElt(TupleType::getEmpty(Context)),
TupleTypeElt(E->getType()),
TupleTypeElt(TupleType::getEmpty(Context))});
Tup->setType(TupleType::get(TupleTypes, Context));
TupleElementExpr *GetOne = new (Context)
TupleElementExpr(Tup, SourceLoc(), 1, SourceLoc(), E->getType());
GetOne->setImplicit(true);
Added<Expr *> AddedGet(GetOne);
return *AddedGet;
}
Added<Stmt *> buildLoggerCall(DeclNameRef LoggerName, SourceRange SR) {
if (!SR.isValid()) {
return nullptr;
}
std::pair<unsigned, unsigned> StartLC =
Context.SourceMgr.getPresumedLineAndColumnForLoc(SR.Start);
std::pair<unsigned, unsigned> EndLC =
Context.SourceMgr.getPresumedLineAndColumnForLoc(
Lexer::getLocForEndOfToken(Context.SourceMgr, SR.End));
Expr *StartLine = IntegerLiteralExpr::createFromUnsigned(Context, StartLC.first, SR.Start);
Expr *EndLine = IntegerLiteralExpr::createFromUnsigned(Context, EndLC.first, SR.End);
Expr *StartColumn = IntegerLiteralExpr::createFromUnsigned(Context, StartLC.second, SR.Start);
Expr *EndColumn = IntegerLiteralExpr::createFromUnsigned(Context, EndLC.second, SR.End);
Expr *ModuleExpr = buildIDArgumentExpr(ModuleIdentifier, SR);
Expr *FileExpr = buildIDArgumentExpr(FileIdentifier, SR);
UnresolvedDeclRefExpr *LoggerRef = new (Context)
UnresolvedDeclRefExpr(LoggerName,
DeclRefKind::Ordinary, DeclNameLoc(SR.End));
LoggerRef->setImplicit(true);
auto *ArgList = ArgumentList::forImplicitUnlabeled(Context, {
StartLine, EndLine, StartColumn, EndColumn, ModuleExpr, FileExpr
});
ApplyExpr *LoggerCall =
CallExpr::createImplicit(Context, LoggerRef, ArgList);
Added<ApplyExpr *> AddedLogger(LoggerCall);
if (!doTypeCheck(Context, TypeCheckDC, AddedLogger)) {
return nullptr;
}
return buildLoggerCallWithApply(AddedLogger, SR);
}
// Assumes Apply has already been type-checked.
Added<Stmt *> buildLoggerCallWithApply(Added<ApplyExpr *> Apply,
SourceRange SR) {
ASTNode Elements[] = {*Apply};
BraceStmt *BS =
BraceStmt::create(Context, SourceLoc(), Elements, SourceLoc(), true);
return BS;
}
};
} // end anonymous namespace
void swift::performPCMacro(SourceFile &SF) {
class ExpressionFinder : public ASTWalker {
private:
unsigned TmpNameIndex = 0;
public:
ExpressionFinder() = default;
MacroWalking getMacroWalkingBehavior() const override {
return MacroWalking::Expansion;
}
PreWalkAction walkToDeclPre(Decl *D) override {
ASTContext &ctx = D->getASTContext();
if (auto *FD = dyn_cast<AbstractFunctionDecl>(D)) {
if (!FD->isImplicit()) {
if (FD->getBody()) {
Instrumenter I(ctx, FD, TmpNameIndex);
I.transformDecl(FD);
return Action::SkipNode();
}
}
} else if (auto *TLCD = dyn_cast<TopLevelCodeDecl>(D)) {
if (!TLCD->isImplicit()) {
if (BraceStmt *Body = TLCD->getBody()) {
Instrumenter I(ctx, TLCD, TmpNameIndex);
BraceStmt *NewBody = I.transformBraceStmt(Body, nullptr, true);
if (NewBody != Body) {
TLCD->setBody(NewBody);
TypeChecker::checkTopLevelEffects(TLCD);
TypeChecker::contextualizeTopLevelCode(TLCD);
}
return Action::SkipNode();
}
}
}
return Action::Continue();
}
};
ExpressionFinder EF;
for (Decl *D : SF.getTopLevelDecls()) {
D->walk(EF);
}
}
|