File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
include/swift/SILOptimizer/Analysis
SILOptimizer/LoopTransforms Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -695,14 +695,14 @@ class EscapeAnalysis : public BottomUpIPAnalysis {
695
695
void buildConnectionGraph (FunctionInfo *FInfo, FunctionOrder &BottomUpOrder,
696
696
int RecursionDepth);
697
697
698
- // / Updates the graph by analysing instruction \p I.
698
+ // / Updates the graph by analyzing instruction \p I.
699
699
// / Visited callees are added to \p BottomUpOrder until \p RecursionDepth
700
700
// / reaches MaxRecursionDepth.
701
701
void analyzeInstruction (SILInstruction *I, FunctionInfo *FInfo,
702
702
FunctionOrder &BottomUpOrder,
703
703
int RecursionDepth);
704
704
705
- // / Updates the graph by analysing instruction \p SI, which may be a
705
+ // / Updates the graph by analyzing instruction \p SI, which may be a
706
706
// / select_enum, select_enum_addr or select_value.
707
707
template <class SelectInst >
708
708
void analyzeSelectInst (SelectInst *SI, ConnectionGraph *ConGraph);
Original file line number Diff line number Diff line change @@ -382,7 +382,7 @@ class COWArrayOpt {
382
382
SmallPtrSet<Operand*, 8 > MatchedReleases;
383
383
384
384
// The address of the array passed to the current make_mutable we are
385
- // analysing .
385
+ // analyzing .
386
386
SILValue CurrentArrayAddr;
387
387
public:
388
388
COWArrayOpt (RCIdentityFunctionInfo *RCIA, SILLoop *L,
Original file line number Diff line number Diff line change @@ -475,7 +475,7 @@ void LoopTreeOptimization::analyzeCurrentLoop(
475
475
std::unique_ptr<LoopNestSummary> &CurrSummary, ReadSet &SafeReads) {
476
476
WriteSet &MayWrites = CurrSummary->MayWrites ;
477
477
SILLoop *Loop = CurrSummary->Loop ;
478
- DEBUG (llvm::dbgs () << " Analysing accesses.\n " );
478
+ DEBUG (llvm::dbgs () << " Analyzing accesses.\n " );
479
479
480
480
// Contains function calls in the loop, which only read from memory.
481
481
SmallVector<ApplyInst *, 8 > ReadOnlyApplies;
Original file line number Diff line number Diff line change 10
10
//
11
11
// ===----------------------------------------------------------------------===//
12
12
//
13
- // This file implements semantic analysis for expressions, analysing an
13
+ // This file implements semantic analysis for expressions, analyzing an
14
14
// expression tree in post-order, bottom-up, from leaves up to the root.
15
15
//
16
16
// ===----------------------------------------------------------------------===//
Original file line number Diff line number Diff line change 10
10
//
11
11
// ===----------------------------------------------------------------------===//
12
12
//
13
- // This file implements semantic analysis for patterns, analysing a
13
+ // This file implements semantic analysis for patterns, analyzing a
14
14
// pattern tree in both bottom-up and top-down ways.
15
15
//
16
16
// ===----------------------------------------------------------------------===//
You can’t perform that action at this time.
0 commit comments