File tree 8 files changed +15
-15
lines changed
8 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 28
28
29
29
using namespace swift ;
30
30
31
- STATISTIC (NumPropertiesReplaced, " Number of array property calls replaced" );
31
+ STATISTIC (NumPropertiesReplaced, " Number of array property calls replaced" );
32
32
33
33
namespace {
34
34
Original file line number Diff line number Diff line change 72
72
#include " llvm/Support/Debug.h"
73
73
74
74
STATISTIC (NumCopyNRVO, " Number of copies removed via named return value opt." );
75
- STATISTIC (NumCopyForward, " Number of copies removed via forward propagation. " );
75
+ STATISTIC (NumCopyForward, " Number of copies removed via forward propagation" );
76
76
STATISTIC (NumCopyBackward,
77
- " Number of copies removed via backward propagation. " );
77
+ " Number of copies removed via backward propagation" );
78
78
79
79
using namespace swift ;
80
80
Original file line number Diff line number Diff line change 28
28
29
29
using namespace swift ;
30
30
31
- STATISTIC (NumCondFailRemoved, " Number of cond_fail instructions removed" );
31
+ STATISTIC (NumCondFailRemoved, " Number of cond_fail instructions removed" );
32
32
33
33
namespace {
34
34
Original file line number Diff line number Diff line change 33
33
#include " llvm/Support/CommandLine.h"
34
34
#include " llvm/Support/Debug.h"
35
35
36
- STATISTIC (NumPinPairsRemoved, " Num pin pairs removed" );
36
+ STATISTIC (NumPinPairsRemoved, " Number of pin pairs removed" );
37
37
38
38
using namespace swift ;
39
39
Original file line number Diff line number Diff line change 30
30
#include " llvm/ADT/Statistic.h"
31
31
#include " llvm/Support/Debug.h"
32
32
33
- STATISTIC (NumSunk, " Number of instructions sunk" );
34
- STATISTIC (NumRefCountOpsSimplified, " number of enum ref count ops simplified. " );
33
+ STATISTIC (NumSunk, " Number of instructions sunk" );
34
+ STATISTIC (NumRefCountOpsSimplified, " Number of enum ref count ops simplified" );
35
35
STATISTIC (NumHoisted, " Number of instructions hoisted" );
36
36
37
37
using namespace swift ;
Original file line number Diff line number Diff line change 34
34
#include " llvm/Support/CommandLine.h"
35
35
using namespace swift ;
36
36
37
- STATISTIC (NumBlocksDeleted, " Number of unreachable blocks removed" );
38
- STATISTIC (NumBlocksMerged, " Number of blocks merged together" );
39
- STATISTIC (NumJumpThreads, " Number of jumps threaded" );
40
- STATISTIC (NumTermBlockSimplified, " Number of programterm block simplified" );
37
+ STATISTIC (NumBlocksDeleted, " Number of unreachable blocks removed" );
38
+ STATISTIC (NumBlocksMerged, " Number of blocks merged together" );
39
+ STATISTIC (NumJumpThreads, " Number of jumps threaded" );
40
+ STATISTIC (NumTermBlockSimplified, " Number of programterm block simplified" );
41
41
STATISTIC (NumConstantFolded, " Number of terminators constant folded" );
42
- STATISTIC (NumDeadArguments, " Number of unused arguments removed" );
42
+ STATISTIC (NumDeadArguments, " Number of unused arguments removed" );
43
43
STATISTIC (NumSROAArguments, " Number of aggregate argument levels split by "
44
- " SROA " );
44
+ " SROA" );
45
45
46
46
// ===----------------------------------------------------------------------===//
47
47
// CFG Simplification
Original file line number Diff line number Diff line change 36
36
37
37
using namespace swift ;
38
38
39
- STATISTIC (NumInstrSunk, " Number of instructions sunk" );
39
+ STATISTIC (NumInstrSunk, " Number of instructions sunk" );
40
40
41
41
namespace {
42
42
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ using namespace constraints;
25
25
// Statistics
26
26
// ===----------------------------------------------------------------------===//
27
27
#define DEBUG_TYPE " Constraint solver overall"
28
- STATISTIC (NumDiscardedSolutions, " # of solutions discarded" );
28
+ STATISTIC (NumDiscardedSolutions, " Number of solutions discarded" );
29
29
30
30
void ConstraintSystem::increaseScore (ScoreKind kind) {
31
31
unsigned index = static_cast <unsigned >(kind);
You can’t perform that action at this time.
0 commit comments