forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSILProfiler.cpp
1158 lines (985 loc) · 38.2 KB
/
SILProfiler.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
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
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//===--- SILProfiler.cpp - Instrumentation based profiling ----------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "swift/SIL/SILProfiler.h"
#include "swift/AST/ASTWalker.h"
#include "swift/AST/Decl.h"
#include "swift/AST/Expr.h"
#include "swift/AST/Module.h"
#include "swift/AST/Stmt.h"
#include "swift/Parse/Lexer.h"
#include "swift/SIL/FormalLinkage.h"
#include "swift/SIL/SILModule.h"
#include "llvm/IR/GlobalValue.h"
#include "llvm/IR/Intrinsics.h"
#include "llvm/ProfileData/Coverage/CoverageMapping.h"
#include "llvm/ProfileData/Coverage/CoverageMappingWriter.h"
#include "llvm/ProfileData/InstrProf.h"
#include <forward_list>
#define DEBUG_TYPE "SILProfiler"
using namespace swift;
/// Check if a closure has a body.
static bool doesClosureHaveBody(AbstractClosureExpr *ACE) {
if (auto *CE = dyn_cast<ClosureExpr>(ACE))
return CE->getBody();
if (auto *autoCE = dyn_cast<AutoClosureExpr>(ACE))
return autoCE->getBody();
return false;
}
/// Check whether a root AST node is unmapped, i.e not profiled.
static bool isUnmapped(ASTNode N) {
if (auto *E = N.dyn_cast<Expr *>()) {
auto *CE = dyn_cast<AbstractClosureExpr>(E);
// Only map closure expressions with bodies.
if (!CE || !doesClosureHaveBody(CE))
return true;
// Don't map implicit closures, unless they're autoclosures.
if (!isa<AutoClosureExpr>(CE) && CE->isImplicit())
return true;
return false;
}
auto *D = N.get<Decl *>();
if (auto *AFD = dyn_cast<AbstractFunctionDecl>(D)) {
// Don't map functions without bodies.
if (!AFD->getBody())
return true;
// Map all *structors, even if they are implicit.
if (isa<ConstructorDecl>(D) || isa<DestructorDecl>(D))
return false;
// Map implicit getters.
if (auto *accessor = dyn_cast<AccessorDecl>(AFD))
if (accessor->isImplicit() && accessor->isGetter())
return false;
}
// Skip any remaining implicit, or otherwise unsupported decls.
if (D->isImplicit() || isa<EnumCaseDecl>(D))
return true;
return false;
}
namespace swift {
bool doesASTRequireProfiling(SILModule &M, ASTNode N) {
return M.getOptions().GenerateProfile && !isUnmapped(N);
}
} // namespace swift
/// Check that the input AST has at least been type-checked.
LLVM_ATTRIBUTE_UNUSED
static bool hasASTBeenTypeChecked(ASTNode N) {
DeclContext *DC = N.getAsDeclContext();
assert(DC && "Invalid AST node for profiling");
SourceFile *SF = DC->getParentSourceFile();
return !SF || SF->ASTStage >= SourceFile::TypeChecked;
}
/// Check whether a mapped AST node requires a new profiler.
static bool canCreateProfilerForAST(ASTNode N) {
assert(hasASTBeenTypeChecked(N) && "Cannot use this AST for profiling");
if (auto *D = N.dyn_cast<Decl *>()) {
if (isa<AbstractFunctionDecl>(D))
return true;
if (isa<TopLevelCodeDecl>(D))
return true;
if (isa<NominalTypeDecl>(D))
return true;
} else {
auto *E = N.get<Expr *>();
if (isa<AbstractClosureExpr>(E))
return true;
}
return false;
}
SILProfiler *SILProfiler::create(SILModule &M, ForDefinition_t forDefinition,
ASTNode N) {
// Avoid generating profiling state for declarations.
if (!forDefinition)
return nullptr;
const auto &Opts = M.getOptions();
if (!doesASTRequireProfiling(M, N) && Opts.UseProfile.empty())
return nullptr;
if (!canCreateProfilerForAST(N))
llvm_unreachable("Invalid AST node for profiling");
auto *Buf = M.allocate<SILProfiler>(1);
auto *SP = ::new (Buf) SILProfiler(M, N, Opts.EmitProfileCoverageMapping);
SP->assignRegionCounters();
return SP;
}
namespace {
/// Walk the non-static initializers in \p PBD.
static void walkPatternForProfiling(PatternBindingDecl *PBD,
ASTWalker &Walker) {
if (PBD && !PBD->isStatic())
for (auto E : PBD->getPatternList())
if (auto init = E.getNonLazyInit())
init->walk(Walker);
}
/// Special logic for handling closure visitation.
///
/// To prevent a closure from being mapped twice, avoid recursively walking
/// into one unless the closure's function definition is being profiled.
///
/// Apply \p Func if the closure can be visited.
template <typename F>
std::pair<bool, Expr *> visitClosureExpr(ASTWalker &Walker,
AbstractClosureExpr *CE, F Func) {
if (!Walker.Parent.isNull())
return {false, CE};
Func();
return {true, CE};
}
/// Special logic for handling function visitation.
///
/// To avoid creating duplicate mappings, a function decl is only profiled if
/// it hasn't been reached via recursive walk, or if it's a constructor for a
/// nominal type (these are profiled in a group).
///
/// Apply \p Func is the function can be visited.
template <typename F>
bool visitFunctionDecl(ASTWalker &Walker, AbstractFunctionDecl *AFD, F Func) {
bool continueWalk = Walker.Parent.isNull() || isa<ConstructorDecl>(AFD);
if (continueWalk)
Func();
return continueWalk;
}
/// Special logic for handling nominal type visitation.
///
/// Apply \p Func if the nominal type can be visited (i.e it has not been
/// reached via recursive walk).
template <typename F>
bool visitNominalTypeDecl(ASTWalker &Walker, NominalTypeDecl *NTD, F Func) {
bool continueWalk = Walker.Parent.isNull();
if (continueWalk)
Func();
return continueWalk;
}
/// An ASTWalker that maps ASTNodes to profiling counters.
struct MapRegionCounters : public ASTWalker {
/// The next counter value to assign.
unsigned NextCounter = 0;
/// The map of statements to counters.
llvm::DenseMap<ASTNode, unsigned> &CounterMap;
/// A flag indicating whether we're walking a nominal type.
bool WithinNominalType = false;
MapRegionCounters(llvm::DenseMap<ASTNode, unsigned> &CounterMap)
: CounterMap(CounterMap) {}
void mapRegion(ASTNode N) {
CounterMap[N] = NextCounter;
LLVM_DEBUG({
llvm::dbgs() << "Assigned counter #" << NextCounter << " to: ";
auto *E = N.dyn_cast<Expr *>();
if (E)
llvm::dbgs() << Expr::getKindName(E->getKind()) << "\n";
auto *S = N.dyn_cast<Stmt *>();
if (S)
llvm::dbgs() << Stmt::getKindName(S->getKind()) << "\n";
});
++NextCounter;
}
bool walkToDeclPre(Decl *D) override {
if (isUnmapped(D))
return false;
if (auto *AFD = dyn_cast<AbstractFunctionDecl>(D)) {
return visitFunctionDecl(*this, AFD, [&] { mapRegion(AFD->getBody()); });
} else if (auto *TLCD = dyn_cast<TopLevelCodeDecl>(D)) {
mapRegion(TLCD->getBody());
} else if (auto *NTD = dyn_cast<NominalTypeDecl>(D)) {
return visitNominalTypeDecl(*this, NTD,
[&] { WithinNominalType = true; });
}
return true;
}
std::pair<bool, Stmt *> walkToStmtPre(Stmt *S) override {
if (auto *IS = dyn_cast<IfStmt>(S)) {
mapRegion(IS->getThenStmt());
} else if (auto *US = dyn_cast<GuardStmt>(S)) {
mapRegion(US->getBody());
} else if (auto *WS = dyn_cast<WhileStmt>(S)) {
mapRegion(WS->getBody());
} else if (auto *RWS = dyn_cast<RepeatWhileStmt>(S)) {
mapRegion(RWS->getBody());
} else if (auto *FES = dyn_cast<ForEachStmt>(S)) {
mapRegion(FES->getBody());
walkPatternForProfiling(FES->getIterator(), *this);
} else if (auto *SS = dyn_cast<SwitchStmt>(S)) {
mapRegion(SS);
} else if (auto *CS = dyn_cast<CaseStmt>(S)) {
mapRegion(CS);
} else if (auto *CS = dyn_cast<CatchStmt>(S)) {
mapRegion(CS->getBody());
}
return {true, S};
}
std::pair<bool, Expr *> walkToExprPre(Expr *E) override {
if (auto *IE = dyn_cast<IfExpr>(E)) {
mapRegion(IE->getThenExpr());
} else if (auto *ACE = dyn_cast<AbstractClosureExpr>(E)) {
return visitClosureExpr(*this, ACE, [&] { mapRegion(ACE); });
}
// rdar://42792053
// TODO: There's an outstanding issue here with LazyInitializerExpr. A LIE
// is copied into the body of a property getter after type-checking (before
// coverage). ASTWalker only visits this expression once via the property's
// VarDecl, and does not visit it again within the getter. This results in
// missing coverage. SILGen treats the init expr as part of the getter, but
// its SILProfiler has no information about the init because the LIE isn't
// visited here.
return {true, E};
}
};
/// A node in an expression tree of counters.
class CounterExpr {
enum class Kind { Node, Add, Sub, Zero, Ref };
Kind K;
ASTNode Node;
const CounterExpr *LHS;
const CounterExpr *RHS;
CounterExpr(Kind K) : K(K) {
assert((K == Kind::Zero) && "only valid for Zero");
}
CounterExpr(Kind K, ASTNode Node) : K(K), Node(Node) {
assert(K == Kind::Node && "only valid for Node");
}
CounterExpr(Kind K, const CounterExpr &LHS) : K(K), LHS(&LHS) {
assert((K == Kind::Ref) && "only valid for Ref");
}
CounterExpr(Kind K, const CounterExpr &LHS, const CounterExpr &RHS)
: K(K), LHS(&LHS), RHS(&RHS) {
assert((K == Kind::Add || K == Kind::Sub) && "only valid for operators");
}
public:
// Move only.
CounterExpr(const CounterExpr &) = delete;
void operator=(const CounterExpr &) = delete;
CounterExpr(CounterExpr &&Other) = default;
CounterExpr &operator=(CounterExpr &&RHS) = default;
static CounterExpr Leaf(ASTNode Node) {
return CounterExpr(Kind::Node, Node);
}
static CounterExpr Add(const CounterExpr &LHS, const CounterExpr &RHS) {
return CounterExpr(Kind::Add, LHS, RHS);
}
static CounterExpr Sub(const CounterExpr &LHS, const CounterExpr &RHS) {
return CounterExpr(Kind::Sub, LHS, RHS);
}
static CounterExpr Zero() { return CounterExpr(Kind::Zero); }
static CounterExpr Ref(const CounterExpr &LHS) {
return CounterExpr(Kind::Ref, LHS);
}
/// Return the referenced node, or null if this is not a Ref type.
const CounterExpr *getReferencedNode() const {
return K == Kind::Ref ? LHS : nullptr;
}
/// Returns true if this is a Zero node.
bool isZero() const { return K == Kind::Zero; }
/// Expand this node into an llvm::coverage::Counter.
///
/// Updates \c Builder with any expressions that are needed to represent this
/// counter.
llvm::coverage::Counter
expand(llvm::coverage::CounterExpressionBuilder &Builder,
llvm::DenseMap<ASTNode, unsigned> &Counters) const {
switch (K) {
case Kind::Zero:
return llvm::coverage::Counter::getZero();
case Kind::Node:
return llvm::coverage::Counter::getCounter(Counters[Node]);
case Kind::Add:
return Builder.add(LHS->expand(Builder, Counters),
RHS->expand(Builder, Counters));
case Kind::Sub:
return Builder.subtract(LHS->expand(Builder, Counters),
RHS->expand(Builder, Counters));
case Kind::Ref:
return LHS->expand(Builder, Counters);
}
llvm_unreachable("Unhandled Kind in switch.");
}
void print(raw_ostream &OS) const {
switch (K) {
case Kind::Zero:
OS << "zero";
return;
case Kind::Node:
OS << "node(" << Node.getOpaqueValue() << ")";
return;
case Kind::Add:
case Kind::Sub:
LHS->print(OS);
OS << ' ' << ((K == Kind::Add) ? '+' : '-') << ' ';
RHS->print(OS);
return;
case Kind::Ref:
OS << "ref(";
LHS->print(OS);
OS << ")";
return;
}
llvm_unreachable("Unhandled Kind in switch.");
}
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
LLVM_DUMP_METHOD void dump() const { print(llvm::errs()); }
#endif
};
/// \brief A region of source code that can be mapped to a counter.
class SourceMappingRegion {
ASTNode Node;
CounterExpr *Count;
/// \brief The region's starting location.
Optional<SourceLoc> StartLoc;
/// \brief The region's ending location.
Optional<SourceLoc> EndLoc;
public:
SourceMappingRegion(ASTNode Node, CounterExpr &Count,
Optional<SourceLoc> StartLoc, Optional<SourceLoc> EndLoc)
: Node(Node), Count(&Count), StartLoc(StartLoc), EndLoc(EndLoc) {}
SourceMappingRegion(SourceMappingRegion &&Region) = default;
SourceMappingRegion &operator=(SourceMappingRegion &&RHS) = default;
ASTNode getNode() const { return Node; }
CounterExpr &getCounter() const { return *Count; }
bool hasStartLoc() const { return StartLoc.hasValue(); }
void setStartLoc(SourceLoc Loc) { StartLoc = Loc; }
const SourceLoc &getStartLoc() const {
assert(StartLoc && "Region has no start location");
return *StartLoc;
}
bool hasEndLoc() const { return EndLoc.hasValue(); }
void setEndLoc(SourceLoc Loc) { EndLoc = Loc; }
const SourceLoc &getEndLoc() const {
assert(EndLoc && "Region has no end location");
return *EndLoc;
}
};
/// An ASTWalker that maps ASTNodes to profiling counters.
struct PGOMapping : public ASTWalker {
/// The next counter value to assign.
unsigned NextCounter;
/// The map of statements to counters.
llvm::DenseMap<ASTNode, ProfileCounter> &LoadedCounterMap;
llvm::Expected<llvm::InstrProfRecord> &LoadedCounts;
llvm::DenseMap<ASTNode, ASTNode> &CondToParentMap;
llvm::DenseMap<ASTNode, unsigned> CounterMap;
PGOMapping(llvm::DenseMap<ASTNode, ProfileCounter> &LoadedCounterMap,
llvm::Expected<llvm::InstrProfRecord> &LoadedCounts,
llvm::DenseMap<ASTNode, ASTNode> &RegionCondToParentMap)
: NextCounter(0), LoadedCounterMap(LoadedCounterMap),
LoadedCounts(LoadedCounts), CondToParentMap(RegionCondToParentMap) {}
unsigned getParentCounter() const {
if (Parent.isNull())
return 0;
else if (Parent.getKind() == ASTWalker::ParentKind::Decl) {
auto it = CounterMap.find(Parent.getAsDecl());
return (it != CounterMap.end()) ? it->getSecond() : 0;
} else if (Parent.getKind() == ASTWalker::ParentKind::Stmt) {
auto it = CounterMap.find(Parent.getAsStmt());
return (it != CounterMap.end()) ? it->getSecond() : 0;
} else if (Parent.getKind() == ASTWalker::ParentKind::Expr) {
auto it = CounterMap.find(Parent.getAsExpr());
return (it != CounterMap.end()) ? it->getSecond() : 0;
}
return 0;
}
ProfileCounter subtract(ProfileCounter L, ProfileCounter R) {
if (!L.hasValue() || !R.hasValue()) {
return L;
}
uint64_t LV = L.getValue();
uint64_t RV = R.getValue();
assert(LV >= RV && "Invalid counter subtraction");
return LV - RV;
}
/// Load the execution count corresponding to \p Node from a profile, if one
/// is available.
ProfileCounter loadExecutionCount(ASTNode Node) {
if (!Node)
return ProfileCounter();
auto CounterIt = CounterMap.find(Node);
assert(CounterIt != CounterMap.end() &&
"region does not have an associated counter");
unsigned CounterIndexForFunc = CounterIt->second;
return LoadedCounts->Counts[CounterIndexForFunc];
}
bool walkToDeclPre(Decl *D) override {
if (isUnmapped(D))
return false;
if (auto *AFD = dyn_cast<AbstractFunctionDecl>(D)) {
return visitFunctionDecl(*this, AFD, [&] {
auto node = AFD->getBody();
CounterMap[node] = NextCounter++;
auto count = loadExecutionCount(node);
LoadedCounterMap[node] = count;
});
}
if (auto *TLCD = dyn_cast<TopLevelCodeDecl>(D)) {
auto node = TLCD->getBody();
CounterMap[node] = NextCounter++;
auto count = loadExecutionCount(node);
LoadedCounterMap[node] = count;
}
if (auto *NTD = dyn_cast<NominalTypeDecl>(D)) {
return visitNominalTypeDecl(*this, NTD, [&] {});
}
return true;
}
std::pair<bool, Stmt *> walkToStmtPre(Stmt *S) override {
unsigned parent = getParentCounter();
if (auto *IS = dyn_cast<IfStmt>(S)) {
auto thenStmt = IS->getThenStmt();
CounterMap[thenStmt] = NextCounter++;
auto thenCount = loadExecutionCount(thenStmt);
LoadedCounterMap[thenStmt] = thenCount;
if (auto elseStmt = IS->getElseStmt()) {
CounterMap[elseStmt] = parent;
auto count = loadExecutionCount(elseStmt);
if (!parent) {
auto thenVal = thenCount.getValue();
for (auto pCount = NextCounter - 1; pCount > 0; --pCount) {
auto cCount = LoadedCounts->Counts[pCount];
if (cCount > thenVal) {
count = cCount;
break;
}
}
}
LoadedCounterMap[elseStmt] = subtract(count, thenCount);
auto Cond = IS->getCond();
for (const auto &elt : Cond) {
if (elt.getKind() ==
StmtConditionElement::ConditionKind::CK_PatternBinding) {
CondToParentMap[elt.getInitializer()] = IS;
}
}
}
} else if (auto *US = dyn_cast<GuardStmt>(S)) {
auto guardBody = US->getBody();
CounterMap[guardBody] = NextCounter++;
auto guardCount = loadExecutionCount(guardBody);
LoadedCounterMap[guardBody] = guardCount;
CounterMap[US] = parent;
auto count = loadExecutionCount(US);
LoadedCounterMap[US] = subtract(count, guardCount);
} else if (auto *WS = dyn_cast<WhileStmt>(S)) {
auto whileBody = WS->getBody();
CounterMap[whileBody] = NextCounter++;
auto whileCount = loadExecutionCount(whileBody);
LoadedCounterMap[whileBody] = whileCount;
CounterMap[WS] = parent;
auto count = loadExecutionCount(WS);
LoadedCounterMap[WS] = count;
} else if (auto *RWS = dyn_cast<RepeatWhileStmt>(S)) {
auto rwsBody = RWS->getBody();
CounterMap[rwsBody] = NextCounter++;
auto rwsBodyCount = loadExecutionCount(rwsBody);
LoadedCounterMap[rwsBody] = rwsBodyCount;
CounterMap[RWS] = parent;
auto count = loadExecutionCount(RWS);
LoadedCounterMap[RWS] = count;
} else if (auto *FES = dyn_cast<ForEachStmt>(S)) {
auto fesBody = FES->getBody();
CounterMap[fesBody] = NextCounter++;
auto fesCount = loadExecutionCount(fesBody);
LoadedCounterMap[fesBody] = fesCount;
CounterMap[FES] = parent;
auto count = loadExecutionCount(FES);
LoadedCounterMap[FES] = count;
walkPatternForProfiling(FES->getIterator(), *this);
} else if (auto *SS = dyn_cast<SwitchStmt>(S)) {
CounterMap[SS] = NextCounter++;
auto ssCount = loadExecutionCount(SS);
LoadedCounterMap[SS] = ssCount;
} else if (auto *CS = dyn_cast<CaseStmt>(S)) {
CounterMap[CS] = NextCounter++;
auto csCount = loadExecutionCount(CS);
LoadedCounterMap[CS] = csCount;
} else if (auto *CS = dyn_cast<CatchStmt>(S)) {
auto csBody = CS->getBody();
CounterMap[csBody] = NextCounter++;
auto csBodyCount = loadExecutionCount(csBody);
LoadedCounterMap[csBody] = csBodyCount;
}
return {true, S};
}
std::pair<bool, Expr *> walkToExprPre(Expr *E) override {
unsigned parent = getParentCounter();
if (auto *IE = dyn_cast<IfExpr>(E)) {
auto thenExpr = IE->getThenExpr();
CounterMap[thenExpr] = NextCounter++;
auto thenCount = loadExecutionCount(thenExpr);
LoadedCounterMap[thenExpr] = thenCount;
auto elseExpr = IE->getElseExpr();
assert(elseExpr && "An if-expr must have an else subexpression");
CounterMap[elseExpr] = parent;
auto count = loadExecutionCount(elseExpr);
if (!parent) {
auto thenVal = thenCount.getValue();
for (auto pCount = NextCounter - 1; pCount > 0; --pCount) {
auto cCount = LoadedCounts->Counts[pCount];
if (cCount > thenVal) {
count = cCount;
break;
}
}
}
LoadedCounterMap[elseExpr] = subtract(count, thenCount);
} else if (auto *ACE = dyn_cast<AbstractClosureExpr>(E)) {
return visitClosureExpr(*this, ACE, [&] {
CounterMap[E] = NextCounter++;
auto eCount = loadExecutionCount(E);
LoadedCounterMap[E] = eCount;
});
}
return {true, E};
}
};
struct CoverageMapping : public ASTWalker {
private:
const SourceManager &SM;
/// \brief Storage for counter expressions.
std::forward_list<CounterExpr> Exprs;
/// \brief The map of statements to counter expressions.
llvm::DenseMap<ASTNode, CounterExpr *> CounterMap;
/// \brief The source mapping regions for this function.
std::vector<SourceMappingRegion> SourceRegions;
/// \brief A stack of currently live regions.
std::vector<SourceMappingRegion> RegionStack;
/// \brief A stack of active repeat-while loops.
std::vector<RepeatWhileStmt *> RepeatWhileStack;
/// \brief A stack of active do-catch statements.
std::vector<DoCatchStmt *> DoCatchStack;
CounterExpr *ExitCounter = nullptr;
Stmt *ImplicitTopLevelBody = nullptr;
NominalTypeDecl *ParentNominalType = nullptr;
/// \brief Return true if \c Node has an associated counter.
bool hasCounter(ASTNode Node) { return CounterMap.count(Node); }
/// \brief Return the region counter for \c Node.
///
/// This should only be called on statements that have a dedicated counter.
CounterExpr &getCounter(ASTNode Node) {
assert(CounterMap.count(Node) && "No counter found");
return *CounterMap[Node];
}
/// \brief Create a counter expression.
CounterExpr &createCounter(CounterExpr &&Expr) {
Exprs.push_front(std::move(Expr));
return Exprs.front();
}
/// \brief Create a counter expression for \c Node and add it to the map.
CounterExpr &assignCounter(ASTNode Node, CounterExpr &&Expr) {
assert(Node && "Assigning counter expression to non-existent AST node");
CounterExpr &Result = createCounter(std::move(Expr));
CounterMap[Node] = &Result;
return Result;
}
/// \brief Create a counter expression referencing \c Node's own counter.
CounterExpr &assignCounter(ASTNode Node) {
return assignCounter(Node, CounterExpr::Leaf(Node));
}
/// \brief Add \c Expr to \c Node's counter.
void addToCounter(ASTNode Node, CounterExpr &Expr) {
CounterExpr &Counter = getCounter(Node);
if (const CounterExpr *ReferencedCounter = Counter.getReferencedNode())
Counter = CounterExpr::Add(*ReferencedCounter, Expr);
else if (Counter.isZero())
Counter = CounterExpr::Ref(Expr);
else
Counter = CounterExpr::Add(createCounter(std::move(Counter)), Expr);
}
/// \brief Subtract \c Expr from \c Node's counter.
void subtractFromCounter(ASTNode Node, CounterExpr &Expr) {
CounterExpr &Counter = getCounter(Node);
assert(!Counter.isZero() && "Cannot create a negative counter");
if (const CounterExpr *ReferencedCounter = Counter.getReferencedNode())
Counter = CounterExpr::Sub(*ReferencedCounter, Expr);
else
Counter = CounterExpr::Sub(createCounter(std::move(Counter)), Expr);
}
/// \brief Return the current region's counter.
CounterExpr &getCurrentCounter() { return getRegion().getCounter(); }
/// \brief Get the counter from the end of the most recent scope.
CounterExpr &getExitCounter() {
assert(ExitCounter && "no exit counter available");
return *ExitCounter;
}
/// \brief Set the exit count so we can leave the scope related to \c Node
///
/// Returns the delta of the count on entering \c Node and exiting, or null if
/// there was no change.
CounterExpr *setExitCount(ASTNode Node) {
ExitCounter = &getCurrentCounter();
if (hasCounter(Node) && ExitCounter != &getCounter(Node))
return &createCounter(CounterExpr::Sub(getCounter(Node), *ExitCounter));
return nullptr;
}
/// \brief Adjust the count for control flow when exiting a scope.
void adjustForNonLocalExits(ASTNode Scope, CounterExpr *ControlFlowAdjust) {
if (Parent.getAsDecl())
return;
CounterExpr *JumpsToLabel = nullptr;
Stmt *ParentStmt = Parent.getAsStmt();
if (ParentStmt) {
if (isa<DoStmt>(ParentStmt) || isa<DoCatchStmt>(ParentStmt) ||
isa<CatchStmt>(ParentStmt))
return;
if (auto *LS = dyn_cast<LabeledStmt>(ParentStmt))
JumpsToLabel = &getCounter(LS);
}
if (!ControlFlowAdjust && !JumpsToLabel)
return;
CounterExpr *Count = &getCurrentCounter();
// Add the counts from jumps directly to the label (such as breaks)
if (JumpsToLabel)
Count = &createCounter(CounterExpr::Add(*Count, *JumpsToLabel));
// Now apply any adjustments for control flow.
if (ControlFlowAdjust)
Count = &createCounter(CounterExpr::Sub(*Count, *ControlFlowAdjust));
RegionStack.emplace_back(ASTNode(), *Count, getEndLoc(Scope), None);
}
/// \brief Push a region covering \c Node onto the stack.
void pushRegion(ASTNode Node) {
RegionStack.emplace_back(Node, getCounter(Node), Node.getStartLoc(),
getEndLoc(Node));
}
/// \brief Replace the current region's count by pushing an incomplete region.
void replaceCount(CounterExpr &&Expr, Optional<SourceLoc> Start = None) {
CounterExpr &Counter = createCounter(std::move(Expr));
RegionStack.emplace_back(ASTNode(), Counter, Start, None);
}
/// \brief Get the location for the end of the last token in \c Node.
SourceLoc getEndLoc(ASTNode Node) {
return Lexer::getLocForEndOfToken(SM, Node.getEndLoc());
}
/// \brief Pop regions from the stack into the function's list of regions.
///
/// Adds all regions from \c ParentNode to the top of the stack to the
/// function's \c SourceRegions.
void popRegions(ASTNode ParentNode) {
auto I = RegionStack.begin(), E = RegionStack.end();
while (I != E &&
I->getNode().getOpaqueValue() != ParentNode.getOpaqueValue())
++I;
assert(I != E && "parent not in stack");
auto ParentIt = I;
SourceLoc EndLoc = ParentIt->getEndLoc();
SourceRegions.push_back(std::move(*I++));
for (; I != E; ++I) {
if (!I->hasStartLoc())
continue;
if (!I->hasEndLoc())
I->setEndLoc(EndLoc);
SourceRegions.push_back(std::move(*I));
}
RegionStack.erase(ParentIt, E);
}
/// \brief Return the currently active region.
SourceMappingRegion &getRegion() {
assert(!RegionStack.empty() && "statement has no region");
return RegionStack.back();
}
/// \brief Ensure that \c S is included in the current region.
void extendRegion(ASTNode S) {
SourceMappingRegion &Region = getRegion();
SourceLoc StartLoc = S.getStartLoc();
if (!Region.hasStartLoc())
Region.setStartLoc(StartLoc);
}
/// \brief Mark \c S as a terminator, starting a zero region.
void terminateRegion(ASTNode S) {
SourceMappingRegion &Region = getRegion();
if (!Region.hasEndLoc())
Region.setEndLoc(getEndLoc(S));
replaceCount(CounterExpr::Zero());
}
Expr *getConditionNode(StmtCondition SC) {
assert(!SC.empty() && "Empty condition");
return SC.front().getBooleanOrNull();
}
public:
CoverageMapping(const SourceManager &SM) : SM(SM) {}
/// \brief Generate the coverage counter mapping regions from collected
/// source regions.
SILCoverageMap *emitSourceRegions(
SILModule &M, StringRef Name, StringRef PGOFuncName, uint64_t Hash,
llvm::DenseMap<ASTNode, unsigned> &CounterIndices, StringRef Filename) {
if (SourceRegions.empty())
return nullptr;
llvm::coverage::CounterExpressionBuilder Builder;
std::vector<SILCoverageMap::MappedRegion> Regions;
for (const auto &Region : SourceRegions) {
assert(Region.hasStartLoc() && "invalid region");
assert(Region.hasEndLoc() && "incomplete region");
auto Start = SM.getLineAndColumn(Region.getStartLoc());
auto End = SM.getLineAndColumn(Region.getEndLoc());
assert(Start.first <= End.first && "region start and end out of order");
Regions.emplace_back(Start.first, Start.second, End.first, End.second,
Region.getCounter().expand(Builder, CounterIndices));
}
return SILCoverageMap::create(M, Filename, Name, PGOFuncName, Hash, Regions,
Builder.getExpressions());
}
bool walkToDeclPre(Decl *D) override {
if (isUnmapped(D))
return false;
if (auto *AFD = dyn_cast<AbstractFunctionDecl>(D)) {
return visitFunctionDecl(*this, AFD, [&] {
CounterExpr &funcCounter = assignCounter(AFD->getBody());
if (ParentNominalType && isa<ConstructorDecl>(AFD))
addToCounter(ParentNominalType, funcCounter);
});
} else if (auto *TLCD = dyn_cast<TopLevelCodeDecl>(D)) {
assignCounter(TLCD->getBody());
ImplicitTopLevelBody = TLCD->getBody();
} else if (auto *NTD = dyn_cast<NominalTypeDecl>(D)) {
return visitNominalTypeDecl(*this, NTD, [&] {
ParentNominalType = NTD;
assignCounter(NTD, CounterExpr::Zero());
pushRegion(NTD);
});
}
return true;
}
bool walkToDeclPost(Decl *D) override {
if (isa<TopLevelCodeDecl>(D))
ImplicitTopLevelBody = nullptr;
return true;
}
std::pair<bool, Stmt *> walkToStmtPre(Stmt *S) override {
if (S->isImplicit() && S != ImplicitTopLevelBody)
return {true, S};
if (!RegionStack.empty())
extendRegion(S);
if (auto *BS = dyn_cast<BraceStmt>(S)) {
if (hasCounter(BS))
pushRegion(BS);
} else if (auto *IS = dyn_cast<IfStmt>(S)) {
assignCounter(IS, CounterExpr::Zero());
CounterExpr &ThenCounter = assignCounter(IS->getThenStmt());
if (IS->getElseStmt())
assignCounter(IS->getElseStmt(),
CounterExpr::Sub(getCurrentCounter(), ThenCounter));
} else if (auto *GS = dyn_cast<GuardStmt>(S)) {
assignCounter(GS, CounterExpr::Zero());
assignCounter(GS->getBody());
} else if (auto *WS = dyn_cast<WhileStmt>(S)) {
assignCounter(WS, CounterExpr::Zero());
if (auto *E = getConditionNode(WS->getCond()))
assignCounter(E, CounterExpr::Ref(getCurrentCounter()));
assignCounter(WS->getBody());
} else if (auto *RWS = dyn_cast<RepeatWhileStmt>(S)) {
assignCounter(RWS, CounterExpr::Zero());
CounterExpr &BodyCounter = assignCounter(RWS->getBody());
assignCounter(RWS->getCond(), CounterExpr::Ref(BodyCounter));
RepeatWhileStack.push_back(RWS);
} else if (auto *FES = dyn_cast<ForEachStmt>(S)) {
assignCounter(FES, CounterExpr::Zero());
assignCounter(FES->getBody());
walkPatternForProfiling(FES->getIterator(), *this);
} else if (auto *SS = dyn_cast<SwitchStmt>(S)) {
assignCounter(SS);
// Assign counters for cases so they're available for fallthrough.
for (CaseStmt *Case : SS->getCases())
assignCounter(Case);
} else if (isa<CaseStmt>(S)) {
pushRegion(S);
} else if (auto *DS = dyn_cast<DoStmt>(S)) {
assignCounter(DS->getBody(), CounterExpr::Ref(getCurrentCounter()));
assignCounter(DS);
} else if (auto *DCS = dyn_cast<DoCatchStmt>(S)) {
// The do-catch body is visited the same number of times as its parent.
assignCounter(DCS->getBody(), CounterExpr::Ref(getCurrentCounter()));
// Initialize the exit count of the do-catch to the entry count, then
// subtract off non-local exits as they are visited.
assignCounter(DCS, CounterExpr::Ref(getCurrentCounter()));
DoCatchStack.push_back(DCS);
} else if (auto *CS = dyn_cast<CatchStmt>(S)) {
assert(DoCatchStack.size() && "catch stmt with no parent");
assignCounter(CS->getBody());
}
return {true, S};
}
Stmt *walkToStmtPost(Stmt *S) override {
if (S->isImplicit() && S != ImplicitTopLevelBody)
return S;
if (isa<BraceStmt>(S)) {
if (hasCounter(S)) {
CounterExpr *Adjust = setExitCount(S);
popRegions(S);
adjustForNonLocalExits(S, Adjust);
}
} else if (auto *WS = dyn_cast<WhileStmt>(S)) {
// Update the condition with the backedge count.
if (auto *E = getConditionNode(WS->getCond()))
addToCounter(E, getExitCounter());
} else if (auto *RWS = dyn_cast<RepeatWhileStmt>(S)) {
assert(RepeatWhileStack.back() == RWS && "Malformed repeat-while stack");
(void)RWS;
RepeatWhileStack.pop_back();
} else if (auto *CS = dyn_cast<ContinueStmt>(S)) {
// Continues create extra backedges, add them to the appropriate counters.
if (!isa<RepeatWhileStmt>(CS->getTarget()))
addToCounter(CS->getTarget(), getCurrentCounter());
if (auto *WS = dyn_cast<WhileStmt>(CS->getTarget())) {
if (auto *E = getConditionNode(WS->getCond()))
addToCounter(E, getCurrentCounter());
}
terminateRegion(S);
} else if (auto *BS = dyn_cast<BreakStmt>(S)) {
// When we break from a loop, we need to adjust the exit count.
Stmt *BreakTarget = BS->getTarget();
if (auto *RWS = dyn_cast<RepeatWhileStmt>(BreakTarget)) {
subtractFromCounter(RWS->getCond(), getCurrentCounter());
} else if (!isa<SwitchStmt>(BreakTarget)) {
addToCounter(BS->getTarget(), getCurrentCounter());
}
// The break also affects the exit counts of active do-catch statements.
for (auto *DCS : DoCatchStack)
subtractFromCounter(DCS, getCurrentCounter());
terminateRegion(S);
} else if (auto *FS = dyn_cast<FallthroughStmt>(S)) {
addToCounter(FS->getFallthroughDest(), getCurrentCounter());
terminateRegion(S);
} else if (isa<SwitchStmt>(S)) {
replaceCount(CounterExpr::Ref(getCounter(S)), getEndLoc(S));
} else if (isa<CaseStmt>(S)) {
popRegions(S);
} else if (auto *DCS = dyn_cast<DoCatchStmt>(S)) {
assert(DoCatchStack.back() == DCS && "Malformed do-catch stack");
DoCatchStack.pop_back();
replaceCount(CounterExpr::Ref(getCounter(S)), getEndLoc(S));