-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathOptimizationRemark.cpp
352 lines (302 loc) · 12.3 KB
/
OptimizationRemark.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
//===--- OptimizationRemark.cpp - Optimization diagnostics ------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
/// \file
/// This file defines the remark type and the emitter class that passes can use
/// to emit optimization diagnostics.
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "sil-opt-remarks"
#include "swift/SIL/OptimizationRemark.h"
#include "swift/AST/DiagnosticEngine.h"
#include "swift/AST/DiagnosticsSIL.h"
#include "swift/AST/SemanticAttrs.h"
#include "swift/Demangling/Demangler.h"
#include "swift/SIL/DebugUtils.h"
#include "swift/SIL/InstructionUtils.h"
#include "swift/SIL/MemAccessUtils.h"
#include "swift/SIL/Projection.h"
#include "swift/SIL/SILArgument.h"
#include "swift/SIL/SILInstruction.h"
#include "swift/SIL/SILRemarkStreamer.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
using namespace swift;
using namespace OptRemark;
Argument::Argument(StringRef key, int n)
: key(ArgumentKeyKind::Default, key), val(llvm::itostr(n)) {}
Argument::Argument(StringRef key, long n)
: key(ArgumentKeyKind::Default, key), val(llvm::itostr(n)) {}
Argument::Argument(StringRef key, long long n)
: key(ArgumentKeyKind::Default, key), val(llvm::itostr(n)) {}
Argument::Argument(StringRef key, unsigned n)
: key(ArgumentKeyKind::Default, key), val(llvm::utostr(n)) {}
Argument::Argument(StringRef key, unsigned long n)
: key(ArgumentKeyKind::Default, key), val(llvm::utostr(n)) {}
Argument::Argument(StringRef key, unsigned long long n)
: key(ArgumentKeyKind::Default, key), val(llvm::utostr(n)) {}
Argument::Argument(ArgumentKey key, SILFunction *f) : key(key) {
auto options = Demangle::DemangleOptions::SimplifiedUIDemangleOptions();
// Enable module names so that we have a way of filtering out
// stdlib-related remarks.
options.DisplayModuleNames = true;
val = (Twine("\"") + Demangle::demangleSymbolAsString(f->getName(), options) +
"\"")
.str();
if (f->hasLocation())
loc = f->getLocation().getSourceLoc();
}
Argument::Argument(StringRef key, SILType ty)
: key(ArgumentKeyKind::Default, key) {
llvm::raw_string_ostream stream(val);
PrintOptions subPrinter = PrintOptions::printSIL();
ty.getASTType().print(stream, subPrinter);
}
Argument::Argument(StringRef key, CanType ty)
: key(ArgumentKeyKind::Default, key) {
llvm::raw_string_ostream stream(val);
ty.print(stream);
}
template <typename DerivedT>
std::string Remark<DerivedT>::getMsg() const {
std::string str;
llvm::raw_string_ostream stream(str);
// Go through our args and if we are not emitting for diagnostics *OR* we are
// emitting for diagnostics and this argument is not intended to be emitted as
// a diagnostic separate from our main remark, emit the arg value here.
for (const Argument &arg : args) {
if (arg.key.kind.isSeparateDiagnostic())
continue;
stream << arg.val;
}
return stream.str();
}
template <typename DerivedT>
std::string Remark<DerivedT>::getDebugMsg() const {
std::string str;
llvm::raw_string_ostream stream(str);
if (indentDebugWidth)
stream << std::string(" ", indentDebugWidth);
for (const Argument &arg : args)
stream << arg.val;
stream << "\n";
return stream.str();
}
static bool hasForceEmitSemanticAttr(SILFunction &fn, StringRef passName) {
return llvm::any_of(fn.getSemanticsAttrs(), [&](const std::string &str) {
auto ref = StringRef(str);
// First try to chomp the prefix.
if (!ref.consume_front(semantics::FORCE_EMIT_OPT_REMARK_PREFIX))
return false;
// Then see if we only have the prefix. Then always return true the user
// wants /all/ remarks.
if (ref.empty())
return true;
// Otherwise, lets try to chomp the '.' and then the passName.
if (!ref.consume_front(".") || !ref.consume_front(passName))
return false;
return ref.empty();
});
}
static bool isMethodWithForceEmitSemanticAttrNominalType(SILFunction &fn) {
if (!fn.hasSelfParam())
return false;
auto selfType = fn.getSelfArgument()->getType();
auto *nomType = selfType.getNominalOrBoundGenericNominal();
if (!nomType)
return false;
return nomType->shouldEmitAssemblyVisionRemarksOnMethods();
}
Emitter::Emitter(StringRef passName, SILFunction &fn)
: fn(fn), passName(passName),
passedEnabled(
hasForceEmitSemanticAttr(fn, passName) ||
isMethodWithForceEmitSemanticAttrNominalType(fn) ||
(fn.getASTContext().LangOpts.OptimizationRemarkPassedPattern &&
fn.getASTContext().LangOpts.OptimizationRemarkPassedPattern->match(
passName))),
missedEnabled(
hasForceEmitSemanticAttr(fn, passName) ||
isMethodWithForceEmitSemanticAttrNominalType(fn) ||
(fn.getASTContext().LangOpts.OptimizationRemarkMissedPattern &&
fn.getASTContext().LangOpts.OptimizationRemarkMissedPattern->match(
passName))) {}
static SourceLoc getLocForPresentation(SILLocation loc,
SourceLocPresentationKind kind) {
if (!loc)
return SourceLoc();
switch (kind) {
case SourceLocPresentationKind::StartRange:
return loc.getSourceLoc();
case SourceLocPresentationKind::EndRange:
return loc.getEndSourceLoc();
}
llvm_unreachable("covered switch");
}
static bool instHasInferrableLoc(SILInstruction &inst) {
if (isa<DeallocStackInst>(inst) || isa<StrongRetainInst>(inst) ||
isa<StrongReleaseInst>(inst) || isa<RetainValueInst>(inst) ||
isa<ReleaseValueInst>(inst) || isa<EndAccessInst>(inst))
return false;
// Ignore empty tuples
if (auto *tup = dyn_cast<TupleInst>(&inst))
return tup->getNumOperands() != 0;
return true;
}
/// The user has passed us an instruction that for some reason has a source loc
/// that can not be used. Search down the current block for an instruction with
/// a valid source loc and use that instead.
static SourceLoc
inferOptRemarkSearchForwards(SILInstruction &i,
SourceLocPresentationKind presentationKind) {
for (auto &inst :
llvm::make_range(std::next(i.getIterator()), i.getParent()->end())) {
if (!instHasInferrableLoc(inst))
continue;
// Skip instructions without a loc we care about since we move it around.
auto newLoc = getLocForPresentation(inst.getLoc(), presentationKind);
if (auto inlinedLoc = inst.getDebugScope()->getOutermostInlineLocation())
newLoc = getLocForPresentation(inlinedLoc, presentationKind);
if (newLoc.isValid()) {
LLVM_DEBUG(llvm::dbgs() << "Inferring loc from " << inst);
return newLoc;
}
}
return SourceLoc();
}
/// The user has passed us an instruction that for some reason has a source loc
/// that can not be used. Search up the current block for an instruction with
/// a valid SILLocation and use the end SourceLoc of the SourceRange for the
/// instruction.
static SourceLoc
inferOptRemarkSearchBackwards(SILInstruction &i,
SourceLocPresentationKind presentationKind) {
for (auto &inst : llvm::make_range(std::next(i.getReverseIterator()),
i.getParent()->rend())) {
if (!instHasInferrableLoc(inst))
continue;
auto loc = inst.getLoc();
if (auto inlinedLoc = inst.getDebugScope()->getOutermostInlineLocation())
loc = inlinedLoc;
if (auto result = getLocForPresentation(loc, presentationKind)) {
LLVM_DEBUG(llvm::dbgs() << "Inferring loc from " << inst);
return result;
}
}
return SourceLoc();
}
static llvm::cl::opt<bool> IgnoreAlwaysInferForTesting(
"sil-opt-remark-ignore-always-infer", llvm::cl::Hidden,
llvm::cl::init(false),
llvm::cl::desc(
"Disables always infer source loc behavior for testing purposes"));
// Attempt to infer a SourceLoc for \p i using heuristics specified by \p
// inferBehavior.
//
// NOTE: We distinguish in between situations where we always must infer
// (retain, release) and other situations where we are ok with original source
// locs if we are not inlined (alloc_ref, alloc_stack).
SourceLoc swift::OptRemark::inferOptRemarkSourceLoc(
SILInstruction &i, SourceLocInferenceBehavior inferBehavior,
SourceLocPresentationKind presentationKind) {
LLVM_DEBUG(llvm::dbgs() << "Begin infer source loc for: " << i);
// If we are only supposed to infer in inline contexts, see if we have a valid
// loc and if that loc is an inlined call site.
auto loc = i.getLoc();
if (!(bool(inferBehavior & SourceLocInferenceBehavior::AlwaysInfer) &&
!IgnoreAlwaysInferForTesting)) {
LLVM_DEBUG(llvm::dbgs() << "Testing insts own source loc?!\n");
if (loc.getSourceLoc().isValid()) {
LLVM_DEBUG(llvm::dbgs() << "Found initial valid loc!\n");
if (!(i.getDebugScope() && i.getDebugScope()->InlinedCallSite)) {
LLVM_DEBUG(llvm::dbgs() << "Found debug scope!\n");
return getLocForPresentation(loc, presentationKind);
} else {
LLVM_DEBUG(llvm::dbgs() << "Did not find debug scope!\n");
}
} else {
LLVM_DEBUG(llvm::dbgs() << "Failed to find initial valid loc!\n");
}
}
if (bool(inferBehavior & SourceLocInferenceBehavior::ForwardScan)) {
LLVM_DEBUG(llvm::dbgs() << "Inferring Source Loc Forward!\n");
SourceLoc newLoc = inferOptRemarkSearchForwards(i, presentationKind);
if (newLoc.isValid()) {
LLVM_DEBUG(llvm::dbgs() << "Found loc!\n");
return newLoc;
}
}
if (bool(inferBehavior & SourceLocInferenceBehavior::BackwardScan)) {
LLVM_DEBUG(llvm::dbgs() << "Inferring Source Loc Backwards!\n");
SourceLoc newLoc = inferOptRemarkSearchBackwards(i, presentationKind);
if (newLoc.isValid()) {
LLVM_DEBUG(llvm::dbgs() << "Found loc!\n");
return newLoc;
}
}
if (bool(inferBehavior & SourceLocInferenceBehavior::ForwardScan2nd)) {
LLVM_DEBUG(llvm::dbgs() << "Inferring Source Loc Forward Scan 2nd!\n");
SourceLoc newLoc = inferOptRemarkSearchForwards(i, presentationKind);
if (newLoc.isValid()) {
LLVM_DEBUG(llvm::dbgs() << "Found loc!\n");
return newLoc;
}
}
LLVM_DEBUG(llvm::dbgs() << "Failed to find good loc!\n");
return SourceLoc();
}
template <typename RemarkT, typename... ArgTypes>
static void emitRemark(SILFunction &fn, const Remark<RemarkT> &remark,
Diag<ArgTypes...> id, bool diagEnabled) {
if (remark.getLocation().isInvalid())
return;
auto &module = fn.getModule();
if (auto *remarkStreamer = module.getSILRemarkStreamer())
remarkStreamer->emit(remark);
// If diagnostics are enabled, first emit the main diagnostic and then loop
// through our arguments and allow the arguments to add additional diagnostics
// if they want.
if (!diagEnabled && !fn.hasSemanticsAttrThatStartsWith(
semantics::FORCE_EMIT_OPT_REMARK_PREFIX))
return;
auto &de = module.getASTContext().Diags;
de.diagnoseWithNotes(
de.diagnose(remark.getLocation(), id, remark.getMsg()), [&]() {
for (auto &arg : remark.getArgs()) {
switch (arg.key.kind) {
case ArgumentKeyKind::Default:
continue;
case ArgumentKeyKind::Note:
de.diagnose(arg.loc, diag::opt_remark_note, arg.val);
continue;
case ArgumentKeyKind::ParentLocNote:
de.diagnose(remark.getLocation(), diag::opt_remark_note, arg.val);
continue;
}
llvm_unreachable("Unhandled case?!");
}
});
}
void Emitter::emit(const RemarkPassed &remark) {
emitRemark(fn, remark, diag::opt_remark_passed, isEnabled<RemarkPassed>());
}
void Emitter::emit(const RemarkMissed &remark) {
emitRemark(fn, remark, diag::opt_remark_missed, isEnabled<RemarkMissed>());
}
void Emitter::emitDebug(const RemarkPassed &remark) {
llvm::dbgs() << remark.getDebugMsg();
}
void Emitter::emitDebug(const RemarkMissed &remark) {
llvm::dbgs() << remark.getDebugMsg();
}